diff options
author | Michael Bien <[email protected]> | 2011-08-03 16:50:06 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-08-03 16:50:06 +0200 |
commit | b709c6156393cdb48106e8db8626cbfc332c0541 (patch) | |
tree | 65ecc151ff6de65c2169145f64ce61cbd8505cfb /test/com | |
parent | c40dfd633ef0f841851ed64c2817a425148378b9 (diff) |
refactoring; extracted CLAbstractExecutorService and CLPoolable.
Diffstat (limited to 'test/com')
-rw-r--r-- | test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java b/test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java index 9690fcd1..a76f86fc 100644 --- a/test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java +++ b/test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java @@ -223,7 +223,7 @@ public class CLMultiContextTest { data = Buffers.newDirectIntBuffer(slice*taskCount); tasks = createTasks(decrementProgramSource, data, taskCount, slice); - CLTaskCompletionService<IntBuffer> service = new CLTaskCompletionService(pool); + CLTaskCompletionService<IntBuffer> service = new CLTaskCompletionService<IntBuffer>(pool); for (CLTestTask task : tasks) { service.submit(task); } |