summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp
diff options
context:
space:
mode:
Diffstat (limited to 'test/com/jogamp')
-rw-r--r--test/com/jogamp/opencl/CLProgramTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/com/jogamp/opencl/CLProgramTest.java b/test/com/jogamp/opencl/CLProgramTest.java
index 18ae1e85..e6ce9207 100644
--- a/test/com/jogamp/opencl/CLProgramTest.java
+++ b/test/com/jogamp/opencl/CLProgramTest.java
@@ -239,9 +239,13 @@ public class CLProgramTest {
long[] wgs = kernel.getCompileWorkGroupSize(context.getDevices()[0]);
- // TODO test on other hardware and compare results
out.println("compile workgroup size: " + wgs[0]+" "+wgs[1]+" "+wgs[2]);
+ assertEquals(512, wgs[0]);
+ assertEquals(512, wgs[1]);
+ assertEquals(512, wgs[2]);
+
+
}finally{
context.release();
}