Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed another concurrent modification bug after testing on AMD, NV and Intel. | Michael Bien | 2011-08-04 | 1 | -1/+1 |
| | |||||
* | renamed CLAbstractExecutorService -> CLExecutorService. | Michael Bien | 2011-08-03 | 5 | -9/+9 |
| | |||||
* | javadoc improvements in concurrent package. | Michael Bien | 2011-08-03 | 5 | -5/+32 |
| | |||||
* | initial import of CLForkJoinPool, a JOCL variant of the Java 7 ForkJoinPool ↵ | Michael Bien | 2011-08-03 | 2 | -0/+278 |
| | | | | + rudimentary test. | ||||
* | made dimension and kernel public final in CLWork. | Michael Bien | 2011-08-03 | 1 | -2/+2 |
| | |||||
* | refactoring; extracted CLAbstractExecutorService and CLPoolable. | Michael Bien | 2011-08-03 | 5 | -255/+374 |
| | |||||
* | initial import of CLWork. Integrated in CLCommandQueue, added junit test. | Michael Bien | 2011-07-26 | 3 | -0/+293 |
| | |||||
* | fixed generics and vargs warning. | Michael Bien | 2011-07-26 | 2 | -1/+2 |
| | |||||
* | unused parameters - fixed copy&paste bug in read/writeBufferRect method + ↵ | Michael Bien | 2011-07-25 | 1 | -2/+4 |
| | | | | added junit test. | ||||
* | added missing license headers. | Michael Bien | 2011-07-20 | 6 | -0/+156 |
| | |||||
* | trivial javadoc fixes. | Michael Bien | 2011-07-20 | 2 | -3/+3 |
| | |||||
* | fixed generics to accept subdevices. | Michael Bien | 2011-07-19 | 2 | -3/+3 |
| | |||||
* | initial subdevice support. | Michael Bien | 2011-07-18 | 3 | -6/+374 |
| | |||||
* | renamed setNullArg to setArgSize, since its currently the sole usecase for ↵ | Michael Bien | 2011-07-18 | 1 | -3/+9 |
| | | | | null arguments. | ||||
* | custom impl for clGetExtensionFuncitonAddress binding to remove a few ↵ | Michael Bien | 2011-07-18 | 2 | -15/+13 |
| | | | | | gluegen workarounds. should be also a bit more gc friendly. | ||||
* | redesigned CLCommandQueuePool. | Michael Bien | 2011-07-11 | 5 | -159/+122 |
| | |||||
* | changed resource release synchronization in a way that we can allow ↵ | Michael Bien | 2011-07-11 | 9 | -19/+35 |
| | | | | concurrent releases of the root and children of the resource hierarchy without a global lock (and a "already released" exception). | ||||
* | changed impl to use an extended ThreadPoolExecutor directly. | Michael Bien | 2011-07-09 | 1 | -5/+73 |
| | |||||
* | CLKernel utility methods for setting vector arguments with up to 4 elements ↵ | Michael Bien | 2011-07-07 | 1 | -10/+281 |
| | | | | + test. | ||||
* | - initial import of CLTaskCompletionService. | Michael Bien | 2011-07-05 | 2 | -7/+98 |
| | | | - fixed pool shutdown behavior. It will now wait till all started tasks finish to be able to release the queue context. | ||||
* | corrected mistake: CLEvent constructor should be protected not public. | Michael Bien | 2011-07-04 | 1 | -1/+1 |
| | |||||
* | public CLEvent constructor + missing @Override | Michael Bien | 2011-06-29 | 2 | -1/+3 |
| | |||||
* | added factory method (Collection<CLPlatform> ...) | Michael Bien | 2011-06-29 | 1 | -6/+8 |
| | |||||
* | utility create and init CLKernel method. | Michael Bien | 2011-06-20 | 1 | -0/+13 |
| | |||||
* | CLCommandQueuePool support for invokeAny(tasks). | Michael Bien | 2011-06-20 | 1 | -0/+24 |
| | |||||
* | varargs createProgram(...) methods for convenient concatenation. | Michael Bien | 2011-06-20 | 1 | -13/+38 |
| | |||||
* | CLKernel short setters, setArgs(Object... values) for convenient initialization. | Michael Bien | 2011-06-19 | 1 | -0/+40 |
| | |||||
* | - added isReleased() to CLResource, made CLObject public. | Michael Bien | 2011-06-19 | 14 | -23/+102 |
| | | | - a CLResource will throw an Exception if released twice. | ||||
* | added another factory method to CLMultiContext. | Michael Bien | 2011-06-18 | 2 | -5/+14 |
| | |||||
* | internal refactoring to use new binding interfaces in highlevel api impl. | Michael Bien | 2011-06-15 | 18 | -101/+139 |
| | |||||
* | added blocking waitForEvents() methods to CLEventList. | Michael Bien | 2011-06-13 | 2 | -10/+51 |
| | |||||
* | CLContext uses now CLContextBinding interface. | Michael Bien | 2011-05-28 | 4 | -20/+77 |
| | |||||
* | javadoc updates. | Michael Bien | 2011-05-27 | 8 | -12/+61 |
| | |||||
* | LLB refactoring. | Michael Bien | 2011-05-27 | 33 | -66/+107 |
| | | | | | | - split up CL into multiple sub interfaces - seperation is now feature wise - introdused llb package for low level classes | ||||
* | introduced CLAccessorFactory spi and threadlocal default impl for CLDevice ↵ | Michael Bien | 2011-05-26 | 8 | -76/+156 |
| | | | | and CLPlatform. | ||||
* | CLAccessor SPI - initial refactorings. | Michael Bien | 2011-05-25 | 8 | -22/+89 |
| | |||||
* | clarified stream closing in javadoc, initial capacity for StringBuilder. | Michael Bien | 2011-05-18 | 1 | -4/+5 |
| | |||||
* | CLKernel code review. | Michael Bien | 2011-05-15 | 2 | -23/+47 |
| | | | | | - optimized create from name path - putArg should not increment the index if setting the argument fails - added putArg() test | ||||
* | moved all cl calls to CLInfoAccessor (CLDevice and CLPlatform). | Michael Bien | 2011-05-12 | 3 | -72/+109 |
| | |||||
* | fixed old TODO + better toString() formatting. | Michael Bien | 2011-05-11 | 1 | -7/+9 |
| | |||||
* | added submitAll() utility method | Michael Bien | 2011-05-09 | 3 | -9/+41 |
| | | | | junit test now covering queue contexts switching improved javadoc. | ||||
* | concurrent utils bugfixes and improvements. | Michael Bien | 2011-05-09 | 4 | -22/+71 |
| | | | | | | - more utility methods - generics fixes - basic junit test for CLCommandQueuePool - javadoc and argument validation | ||||
* | added context switching functionality. | Michael Bien | 2011-05-08 | 2 | -10/+41 |
| | |||||
* | introduced CLQueueContext and its factory - WIP. | Michael Bien | 2011-05-07 | 4 | -38/+147 |
| | |||||
* | one context per device to workaround driver bugs - may change in future. | Michael Bien | 2011-05-07 | 1 | -2/+5 |
| | |||||
* | worker threads should be deamons and should have a name (like all evil things) | Michael Bien | 2011-05-06 | 1 | -3/+5 |
| | |||||
* | added finish action and several utility methods, WIP. | Michael Bien | 2011-05-04 | 1 | -8/+68 |
| | |||||
* | initial import of CLCommandQueuePool and CLTask. | Michael Bien | 2011-05-04 | 2 | -0/+149 |
| | |||||
* | initial import of CLMultiContext utility and test. | Michael Bien | 2011-05-03 | 1 | -0/+144 |
| | |||||
* | using device name and platform vendor suffix for device identification. | Michael Bien | 2011-04-29 | 1 | -29/+17 |
| |