aboutsummaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl
Commit message (Collapse)AuthorAgeFilesLines
* fixed bug in putCopyImageToBuffer + added junit test for buffer2image and ↵Michael Bien2011-10-191-0/+48
| | | | image2buffer copy ops.
* NV driver doesn't like it if a shared CLGL context is released without ↵Michael Bien2011-09-221-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 Bien2011-09-213-8/+149
| | | | | progress, final version will use a different kernel/algorithm. random float utility method for TestUtils
* bugfixes for parallel reduction primitiveMichael Bien2011-09-211-9/+11
| | | | - wrong cache size - illegal read from cache on overflow -> read from gloabal mem
* first version of parallel ForEach primitive.Michael Bien2011-09-202-10/+81
| | | minor refactoring to make it DRY.
* Reduction supports now cl.util.concurrent package.Michael Bien2011-09-174-14/+7
| | | | toString() and other minor changes moved roundUp to CLUtil.
* initial version of parallel Reduction utility.Michael Bien2011-09-151-0/+231
|
* bugfix: [CLWork codepath] local WS must be null if all elements are 0. Using ↵Michael Bien2011-08-301-0/+19
| | | | an empty buffer confuses the driver.
* fixed another concurrent modification bug after testing on AMD, NV and Intel.Michael Bien2011-08-041-0/+5
|
* initial import of CLForkJoinPool, a JOCL variant of the Java 7 ForkJoinPool ↵Michael Bien2011-08-031-0/+110
| | | | + rudimentary test.
* refactoring; extracted CLAbstractExecutorService and CLPoolable.Michael Bien2011-08-031-1/+1
|
* initial import of CLWork. Integrated in CLCommandQueue, added junit test.Michael Bien2011-07-261-0/+36
|
* unused parameters - fixed copy&paste bug in read/writeBufferRect method + ↵Michael Bien2011-07-251-0/+61
| | | | added junit test.
* added missing license headers.Michael Bien2011-07-201-0/+26
|
* initial subdevice support.Michael Bien2011-07-181-0/+64
|
* redesigned CLCommandQueuePool.Michael Bien2011-07-111-15/+25
|
* changed impl to use an extended ThreadPoolExecutor directly.Michael Bien2011-07-091-3/+3
|
* CLKernel utility methods for setting vector arguments with up to 4 elements ↵Michael Bien2011-07-072-4/+91
| | | | + test.
* - initial import of CLTaskCompletionService.Michael Bien2011-07-051-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 Bien2011-06-201-4/+24
|
* CLKernel short setters, setArgs(Object... values) for convenient initialization.Michael Bien2011-06-191-2/+5
|
* LLB refactoring.Michael Bien2011-05-274-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 Bien2011-05-251-10/+9
|
* CLKernel code review.Michael Bien2011-05-151-1/+18
| | | | | - optimized create from name path - putArg should not increment the index if setting the argument fails - added putArg() test
* added submitAll() utility methodMichael Bien2011-05-091-16/+18
| | | | junit test now covering queue contexts switching improved javadoc.
* concurrent utils bugfixes and improvements.Michael Bien2011-05-091-10/+97
| | | | | | - more utility methods - generics fixes - basic junit test for CLCommandQueuePool - javadoc and argument validation
* added context switching functionality.Michael Bien2011-05-081-7/+5
|
* introduced CLQueueContext and its factory - WIP.Michael Bien2011-05-071-2/+33
|
* initial import of CLCommandQueuePool and CLTask.Michael Bien2011-05-041-1/+4
|
* initial import of CLMultiContext utility and test.Michael Bien2011-05-031-0/+51
|
* using CL_CGL sharegroup for context creation on mac + enabled CLGLTest on macMichael Bien2011-04-261-7/+1
|
* - CLGLBuffer size must now be specified when the buffer is createdMichael Bien2011-04-261-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 Bien2011-04-231-13/+13
|
* added createBufferTestMichael Bien2011-04-211-20/+76
|
* fixed race condition in eventsTest()Michael Bien2011-04-201-3/+7
|
* added mapped CLMemory argument to putUnmapMemory for more flexibility.Michael Bien2011-04-201-4/+4
|
* fixed a bug which used a wrong eventlist offset under certain conditions and ↵Michael Bien2011-04-042-9/+85
| | | | added a regression test.
* fixed compiler redundant-casts warnings due to language level changes in ↵Michael Bien2011-02-132-5/+7
| | | | gluegen-rt.
* minimal wgs requirement for kernelTest.Michael Bien2011-02-131-15/+7
|
* using lower wgs in LLB test.Michael Bien2011-01-222-4/+9
| | | increased timeout in CLGLTest.
* missing buffer rewind in source upload code (bug id: #458).Michael Bien2011-01-211-1/+1
|
* paper work: license and file headers.Michael Bien2010-11-269-0/+251
|
* missing returnMichael Bien2010-11-231-0/+1
|
* fixed customEventsTest (was: segfault with CL 1.0, now: disabled on CL 1.0)Michael Bien2010-11-221-11/+4
|
* CLGLContext.create() no longer makes the glcontext current.Michael Bien2010-11-211-13/+9
|
* changes due to mofifications in jogl + propper jogl release() + ↵Michael Bien2010-11-181-6/+7
| | | | destroy(true) -> destroy().
* JOGL: getNativeWindow -> getNativeSurface; modified CLGLTest to only use ↵Michael Bien2010-10-151-8/+9
| | | | JOGL in one thread.
* temporary disable CLGLTest on mac to prevent deadlock.Michael Bien2010-09-261-4/+10
|
* added junit timeouts to CLGLTest (JOGL deadlock on mac) and CLCommandQueueTestMichael Bien2010-09-232-0/+16
|
* last JOGL API changes broke the GLCL junit test. Fixed it.Michael Bien2010-09-231-1/+2
|