summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLCommandQueue.java
Commit message (Collapse)AuthorAgeFilesLines
* internal refactoring.Michael Bien2010-01-251-22/+34
|
* CLImage support for CLCommandQueue.Michael Bien2010-01-251-24/+197
|
* added blockingWait parameter to putWaitForEvent(...) CLCommandQueue methods.Michael Bien2010-01-221-4/+6
|
* introduced CLMemory as superclass for all memory objects.Michael Bien2010-01-181-2/+2
| | | | added CLImage, CLImage2d and CLImage3d.
* CLInfoAccessor uses now threadlocal direct nio buffers for all operations.Michael Bien2010-01-151-9/+22
| | | | | javadoc improvements. added event based profiling functionality.
* cleaned up NioDirectOnly list, added clSetKernelArg to list.Michael Bien2010-01-141-20/+36
| | | | | | added experimental QueueBarrier for easy synchronization between multiple concurrent CLCommandQueues. refactored CLCommandQueue, added putTask(). added another concurrency JUnit test.
* refactored HighLevelBindingTest into seperate tests.Michael Bien2010-01-131-2/+3
| | | | added CLConcurrencyTest and fixed some bugs in CLEvent codepaths.
* introduced CLEventList, an optimized nio collecton for storing CLEvents.Michael Bien2010-01-121-43/+163
| | | | | | added hashCode() and equals() to CLEvent. CLEvent support in CLCommandQueue. Several NIO optimizations.
* introduced CLSampler and CLEvent.Michael Bien2010-01-081-18/+20
| | | | | refactored code to use internal CLInfoAccessor utility where it makes sense. static imports.
* introduced CLGLContext, refactored dependencies, cleanup in opencl code.Michael Bien2010-01-021-0/+10
|
* improved Exception handling in CLProgram and CLKernel.Michael Bien2009-11-081-3/+3
| | | | | introduced CLResource interface for releasable resources. CLProgram is now rebuildable.
* bug fixes in buffer handling.Michael Bien2009-11-051-4/+41
|
* added remaining utility getters to CLDevice.Michael Bien2009-11-011-0/+17
|
* generified CLBuffer, added createFromGLBuffer(...).Michael Bien2009-10-271-3/+3
|
* utility methods and refactoring.Michael Bien2009-10-231-1/+37
|
* api cleanup and refactoring.Michael Bien2009-10-221-5/+44
|
* added CopyBuffer implementation to CLCommandQueue and and test method to ↵Michael Bien2009-10-211-4/+79
| | | | HighLevelBindingTest.
* added CLCommandQueue to CLContext's resource management code, minor fixes...Michael Bien2009-10-201-1/+4
|
* initial import of CLCommandQueue.Michael Bien2009-10-191-0/+77
updated JUnit test to test CLCommandQueue. cleand up project dependencies.