aboutsummaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-08-03 16:50:06 +0200
committerMichael Bien <[email protected]>2011-08-03 16:50:06 +0200
commitb709c6156393cdb48106e8db8626cbfc332c0541 (patch)
tree65ecc151ff6de65c2169145f64ce61cbd8505cfb /test/com/jogamp/opencl
parentc40dfd633ef0f841851ed64c2817a425148378b9 (diff)
refactoring; extracted CLAbstractExecutorService and CLPoolable.
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r--test/com/jogamp/opencl/util/concurrent/CLMultiContextTest.java2
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);
}