Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | unused parameters - fixed copy&paste bug in read/writeBufferRect method + ↵ | Michael Bien | 2011-07-25 | 2 | -2/+65 |
| | | | | added junit test. | ||||
* | added missing license headers. | Michael Bien | 2011-07-20 | 7 | -0/+182 |
| | |||||
* | 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 | 4 | -6/+438 |
| | |||||
* | 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 | 4 | -20/+49 |
| | | | | | gluegen workarounds. should be also a bit more gc friendly. | ||||
* | redesigned CLCommandQueuePool. | Michael Bien | 2011-07-11 | 6 | -174/+147 |
| | |||||
* | 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 | 2 | -8/+76 |
| | |||||
* | CLKernel utility methods for setting vector arguments with up to 4 elements ↵ | Michael Bien | 2011-07-07 | 3 | -14/+372 |
| | | | | + test. | ||||
* | fixed ant property name | Michael Bien | 2011-07-05 | 1 | -1/+1 |
| | |||||
* | - initial import of CLTaskCompletionService. | Michael Bien | 2011-07-05 | 3 | -32/+160 |
| | | | - 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 | 2 | -4/+48 |
| | |||||
* | 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 | 2 | -2/+45 |
| | |||||
* | - 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 |
| | |||||
* | automatic header update (one new extension + minor modifications). | Michael Bien | 2011-06-15 | 4 | -51/+83 |
| | |||||
* | 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 |
| | |||||
* | renamed binding interfaces so we don't have a conflict with HLB. | Michael Bien | 2011-05-27 | 12 | -93/+93 |
| | |||||
* | javadoc updates. | Michael Bien | 2011-05-27 | 22 | -26/+86 |
| | |||||
* | LLB refactoring. | Michael Bien | 2011-05-27 | 54 | -129/+446 |
| | | | | | | - 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. | ||||
* | fixed event-condition test which failed sporadically with out-of-order queues. | Michael Bien | 2011-05-25 | 1 | -10/+9 |
| | |||||
* | CLAccessor SPI - initial refactorings. | Michael Bien | 2011-05-25 | 8 | -22/+89 |
| | |||||
* | updated build HowTo, simplified instructions + updated links. | Michael Bien | 2011-05-25 | 1 | -31/+37 |
| | |||||
* | 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 | 3 | -24/+65 |
| | | | | | - 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 | 4 | -25/+59 |
| | | | | junit test now covering queue contexts switching improved javadoc. | ||||
* | concurrent utils bugfixes and improvements. | Michael Bien | 2011-05-09 | 5 | -32/+168 |
| | | | | | | - more utility methods - generics fixes - basic junit test for CLCommandQueuePool - javadoc and argument validation | ||||
* | added context switching functionality. | Michael Bien | 2011-05-08 | 3 | -17/+46 |
| | |||||
* | introduced CLQueueContext and its factory - WIP. | Michael Bien | 2011-05-07 | 5 | -40/+180 |
| | |||||
* | 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 | 3 | -1/+153 |
| | |||||
* | initial import of CLMultiContext utility and test. | Michael Bien | 2011-05-03 | 2 | -0/+195 |
| | |||||
* | using device name and platform vendor suffix for device identification. | Michael Bien | 2011-04-29 | 1 | -29/+17 |
| | |||||
* | generator should use IllegalArgumentException instead of CLException for ↵ | Michael Bien | 2011-04-27 | 1 | -2/+2 |
| | | | | argument validation. | ||||
* | missing rewind() | Michael Bien | 2011-04-27 | 1 | -0/+1 |
| | |||||
* | using CL_CGL sharegroup for context creation on mac + enabled CLGLTest on mac | Michael Bien | 2011-04-26 | 2 | -9/+5 |
| |