Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed bug in putCopyImageToBuffer + added junit test for buffer2image and ↵ | Michael Bien | 2011-10-19 | 1 | -0/+48 |
| | | | | image2buffer copy ops. | ||||
* | NV driver doesn't like it if a shared CLGL context is released without ↵ | Michael Bien | 2011-09-22 | 1 | -5/+99 |
| | | | | | | | releasing the GL context. context.release() is now commented out in the junit test since what we want is to test jocl and not the driver. - added missing error check in CLGLTexture and CLGLImage factory methods - junit test method for CLGLTexture2d | ||||
* | initial version of parallel scan primitive. The implementation is work in ↵ | Michael Bien | 2011-09-21 | 3 | -8/+149 |
| | | | | | progress, final version will use a different kernel/algorithm. random float utility method for TestUtils | ||||
* | bugfixes for parallel reduction primitive | Michael Bien | 2011-09-21 | 1 | -9/+11 |
| | | | | - wrong cache size - illegal read from cache on overflow -> read from gloabal mem | ||||
* | first version of parallel ForEach primitive. | Michael Bien | 2011-09-20 | 2 | -10/+81 |
| | | | minor refactoring to make it DRY. | ||||
* | Reduction supports now cl.util.concurrent package. | Michael Bien | 2011-09-17 | 4 | -14/+7 |
| | | | | toString() and other minor changes moved roundUp to CLUtil. | ||||
* | initial version of parallel Reduction utility. | Michael Bien | 2011-09-15 | 1 | -0/+231 |
| | |||||
* | bugfix: [CLWork codepath] local WS must be null if all elements are 0. Using ↵ | Michael Bien | 2011-08-30 | 1 | -0/+19 |
| | | | | an empty buffer confuses the driver. | ||||
* | fixed another concurrent modification bug after testing on AMD, NV and Intel. | Michael Bien | 2011-08-04 | 1 | -0/+5 |
| | |||||
* | initial import of CLForkJoinPool, a JOCL variant of the Java 7 ForkJoinPool ↵ | Michael Bien | 2011-08-03 | 1 | -0/+110 |
| | | | | + rudimentary test. | ||||
* | refactoring; extracted CLAbstractExecutorService and CLPoolable. | Michael Bien | 2011-08-03 | 1 | -1/+1 |
| | |||||
* | initial import of CLWork. Integrated in CLCommandQueue, added junit test. | Michael Bien | 2011-07-26 | 1 | -0/+36 |
| | |||||
* | unused parameters - fixed copy&paste bug in read/writeBufferRect method + ↵ | Michael Bien | 2011-07-25 | 1 | -0/+61 |
| | | | | added junit test. | ||||
* | added missing license headers. | Michael Bien | 2011-07-20 | 1 | -0/+26 |
| | |||||
* | initial subdevice support. | Michael Bien | 2011-07-18 | 1 | -0/+64 |
| | |||||
* | redesigned CLCommandQueuePool. | Michael Bien | 2011-07-11 | 1 | -15/+25 |
| | |||||
* | changed impl to use an extended ThreadPoolExecutor directly. | Michael Bien | 2011-07-09 | 1 | -3/+3 |
| | |||||
* | CLKernel utility methods for setting vector arguments with up to 4 elements ↵ | Michael Bien | 2011-07-07 | 2 | -4/+91 |
| | | | | + test. | ||||
* | - initial import of CLTaskCompletionService. | Michael Bien | 2011-07-05 | 1 | -25/+62 |
| | | | - fixed pool shutdown behavior. It will now wait till all started tasks finish to be able to release the queue context. | ||||
* | CLCommandQueuePool support for invokeAny(tasks). | Michael Bien | 2011-06-20 | 1 | -4/+24 |
| | |||||
* | CLKernel short setters, setArgs(Object... values) for convenient initialization. | Michael Bien | 2011-06-19 | 1 | -2/+5 |
| | |||||
* | LLB refactoring. | Michael Bien | 2011-05-27 | 4 | -1/+8 |
| | | | | | | - split up CL into multiple sub interfaces - seperation is now feature wise - introdused llb package for low level classes | ||||
* | fixed event-condition test which failed sporadically with out-of-order queues. | Michael Bien | 2011-05-25 | 1 | -10/+9 |
| | |||||
* | CLKernel code review. | Michael Bien | 2011-05-15 | 1 | -1/+18 |
| | | | | | - optimized create from name path - putArg should not increment the index if setting the argument fails - added putArg() test | ||||
* | added submitAll() utility method | Michael Bien | 2011-05-09 | 1 | -16/+18 |
| | | | | junit test now covering queue contexts switching improved javadoc. | ||||
* | concurrent utils bugfixes and improvements. | Michael Bien | 2011-05-09 | 1 | -10/+97 |
| | | | | | | - more utility methods - generics fixes - basic junit test for CLCommandQueuePool - javadoc and argument validation | ||||
* | added context switching functionality. | Michael Bien | 2011-05-08 | 1 | -7/+5 |
| | |||||
* | introduced CLQueueContext and its factory - WIP. | Michael Bien | 2011-05-07 | 1 | -2/+33 |
| | |||||
* | initial import of CLCommandQueuePool and CLTask. | Michael Bien | 2011-05-04 | 1 | -1/+4 |
| | |||||
* | initial import of CLMultiContext utility and test. | Michael Bien | 2011-05-03 | 1 | -0/+51 |
| | |||||
* | using CL_CGL sharegroup for context creation on mac + enabled CLGLTest on mac | Michael Bien | 2011-04-26 | 1 | -7/+1 |
| | |||||
* | - CLGLBuffer size must now be specified when the buffer is created | Michael Bien | 2011-04-26 | 1 | -19/+118 |
| | | | | | - but can be updated later if required (gl lock is mandatory) - added VBO CLGL test - javadoc updates | ||||
* | switched from PointerBuffer to NativeSizeBuffer. | Michael Bien | 2011-04-23 | 1 | -13/+13 |
| | |||||
* | added createBufferTest | Michael Bien | 2011-04-21 | 1 | -20/+76 |
| | |||||
* | fixed race condition in eventsTest() | Michael Bien | 2011-04-20 | 1 | -3/+7 |
| | |||||
* | added mapped CLMemory argument to putUnmapMemory for more flexibility. | Michael Bien | 2011-04-20 | 1 | -4/+4 |
| | |||||
* | fixed a bug which used a wrong eventlist offset under certain conditions and ↵ | Michael Bien | 2011-04-04 | 2 | -9/+85 |
| | | | | added a regression test. | ||||
* | fixed compiler redundant-casts warnings due to language level changes in ↵ | Michael Bien | 2011-02-13 | 2 | -5/+7 |
| | | | | gluegen-rt. | ||||
* | minimal wgs requirement for kernelTest. | Michael Bien | 2011-02-13 | 1 | -15/+7 |
| | |||||
* | using lower wgs in LLB test. | Michael Bien | 2011-01-22 | 2 | -4/+9 |
| | | | increased timeout in CLGLTest. | ||||
* | missing buffer rewind in source upload code (bug id: #458). | Michael Bien | 2011-01-21 | 1 | -1/+1 |
| | |||||
* | paper work: license and file headers. | Michael Bien | 2010-11-26 | 9 | -0/+251 |
| | |||||
* | missing return | Michael Bien | 2010-11-23 | 1 | -0/+1 |
| | |||||
* | fixed customEventsTest (was: segfault with CL 1.0, now: disabled on CL 1.0) | Michael Bien | 2010-11-22 | 1 | -11/+4 |
| | |||||
* | CLGLContext.create() no longer makes the glcontext current. | Michael Bien | 2010-11-21 | 1 | -13/+9 |
| | |||||
* | changes due to mofifications in jogl + propper jogl release() + ↵ | Michael Bien | 2010-11-18 | 1 | -6/+7 |
| | | | | destroy(true) -> destroy(). | ||||
* | JOGL: getNativeWindow -> getNativeSurface; modified CLGLTest to only use ↵ | Michael Bien | 2010-10-15 | 1 | -8/+9 |
| | | | | JOGL in one thread. | ||||
* | temporary disable CLGLTest on mac to prevent deadlock. | Michael Bien | 2010-09-26 | 1 | -4/+10 |
| | |||||
* | added junit timeouts to CLGLTest (JOGL deadlock on mac) and CLCommandQueueTest | Michael Bien | 2010-09-23 | 2 | -0/+16 |
| | |||||
* | last JOGL API changes broke the GLCL junit test. Fixed it. | Michael Bien | 2010-09-23 | 1 | -1/+2 |
| |