diff options
author | Michael Bien <[email protected]> | 2010-02-01 01:09:18 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-02-01 01:09:18 +0100 |
commit | e4e7dc4e7a63206c091cd3288adc6a7346f74191 (patch) | |
tree | ab2435f774da803489fd58612e6b1f22a3e46cee /test/com/mbien/opencl/CLConcurrencyTest.java | |
parent | 2015fa5cd47b9be234f30e4b98d06b83486e4fb2 (diff) |
trivial bugfixes, typo and javadoc warning fixes.
began to switch to gluegen's libloading infrastructure.
added CL extensions accessors to CLPlatform.
optimized isFooEnabled() methods for CLCommandQueue.
Diffstat (limited to 'test/com/mbien/opencl/CLConcurrencyTest.java')
-rw-r--r-- | test/com/mbien/opencl/CLConcurrencyTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/com/mbien/opencl/CLConcurrencyTest.java b/test/com/mbien/opencl/CLConcurrencyTest.java index 94e8c4ee..e7a244c3 100644 --- a/test/com/mbien/opencl/CLConcurrencyTest.java +++ b/test/com/mbien/opencl/CLConcurrencyTest.java @@ -19,7 +19,7 @@ public class CLConcurrencyTest { @Test public void testEvents() throws IOException { - out.println(" - - - event synchronisation test - - - "); + out.println(" - - - event synchronization test - - - "); final int groupSize = 256; final int elements = roundUp(groupSize, ONE_MB/SIZEOF_INT * 5); // 5MB per buffer @@ -82,7 +82,7 @@ public class CLConcurrencyTest { @Test public void concurrencyTest() throws IOException, InterruptedException { - out.println(" - - - queue synchronisation test - - - "); + out.println(" - - - QueueBarrier test - - - "); final int elements = ONE_MB/SIZEOF_INT * 10; // 20MB per buffer |