summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-09-21 21:29:12 +0200
committerMichael Bien <[email protected]>2011-09-21 21:29:12 +0200
commitb87b657642b6bda35bed85e8b43b3b68ac994c25 (patch)
tree86b7ffb45db16b2849184abad76bb9d1c90294b5 /test/com/jogamp/opencl
parentbaf07b12a2a62003334d17113e8dad1e92b80029 (diff)
initial version of parallel scan primitive. The implementation is work in progress, final version will use a different kernel/algorithm.
random float utility method for TestUtils
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r--test/com/jogamp/opencl/CLProgramTest.java15
-rw-r--r--test/com/jogamp/opencl/TestUtils.java10
-rw-r--r--test/com/jogamp/opencl/util/pp/ScanTest.java132
3 files changed, 149 insertions, 8 deletions
diff --git a/test/com/jogamp/opencl/CLProgramTest.java b/test/com/jogamp/opencl/CLProgramTest.java
index cf7f45ff..ae5a0926 100644
--- a/test/com/jogamp/opencl/CLProgramTest.java
+++ b/test/com/jogamp/opencl/CLProgramTest.java
@@ -55,6 +55,7 @@ import static java.lang.System.*;
import static com.jogamp.opencl.CLProgram.CompilerOptions.*;
import static com.jogamp.opencl.util.CLPlatformFilters.*;
import static com.jogamp.opencl.CLVersion.*;
+import static com.jogamp.opencl.TestUtils.*;
/**
*
@@ -364,11 +365,11 @@ public class CLProgramTest {
Random rnd = new Random(seed);
kernel.putArg(buffer);
- kernel.putArg(rnd.nextFloat());
- kernel.putArg(rnd.nextFloat(), rnd.nextFloat());
-// kernel.putArg(rnd.nextFloat(), rnd.nextFloat(), rnd.nextFloat()); // nv does not support float3
- kernel.putArg(rnd.nextFloat(), rnd.nextFloat(), rnd.nextFloat(), rnd.nextFloat());
- kernel.putArg(TestUtils.fillBuffer(Buffers.newDirectFloatBuffer(8), seed));
+ kernel.putArg(rndFloat(rnd));
+ kernel.putArg(rndFloat(rnd), rndFloat(rnd));
+// kernel.putArg(rndFloat(rnd), rndFloat(rnd), rndFloat(rnd)); // nv does not support float3
+ kernel.putArg(rndFloat(rnd), rndFloat(rnd), rndFloat(rnd), rndFloat(rnd));
+ kernel.putArg(fillBuffer(Buffers.newDirectFloatBuffer(8), seed));
CLCommandQueue queue = context.getMaxFlopsDevice().createCommandQueue();
queue.putTask(kernel).putReadBuffer(buffer, true);
@@ -377,12 +378,12 @@ public class CLProgramTest {
rnd = new Random(seed);
for(int i = 0; i < 7; i++) {
- assertEquals(rnd.nextFloat(), out.get(), 0.01f);
+ assertEquals(rndFloat(rnd), out.get(), 0.01f);
}
rnd = new Random(seed);
for(int i = 0; i < 8; i++) {
- assertEquals(rnd.nextFloat(), out.get(), 0.01f);
+ assertEquals(rndFloat(rnd), out.get(), 0.01f);
}
}finally{
diff --git a/test/com/jogamp/opencl/TestUtils.java b/test/com/jogamp/opencl/TestUtils.java
index e7e5fabe..87e7cc5f 100644
--- a/test/com/jogamp/opencl/TestUtils.java
+++ b/test/com/jogamp/opencl/TestUtils.java
@@ -62,13 +62,21 @@ public class TestUtils {
Random rnd = new Random(seed);
while(buffer.remaining() != 0)
- buffer.put(rnd.nextFloat());
+ buffer.put(rndFloat(rnd));
buffer.rewind();
return buffer;
}
+ public static float rndFloat(Random rnd) {
+ return rndFloat(rnd, 100);
+ }
+
+ public static float rndFloat(Random rnd, float range) {
+ return (rnd.nextFloat()-0.5f)*range*2;
+ }
+
public static void checkIfEqual(ByteBuffer a, ByteBuffer b, int elements) {
for(int i = 0; i < elements; i++) {
int aVal = a.getInt();
diff --git a/test/com/jogamp/opencl/util/pp/ScanTest.java b/test/com/jogamp/opencl/util/pp/ScanTest.java
new file mode 100644
index 00000000..81aa7288
--- /dev/null
+++ b/test/com/jogamp/opencl/util/pp/ScanTest.java
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2011, Michael Bien
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+/*
+ * Created on Tuesday, September 20 2011 01:26
+ */
+package com.jogamp.opencl.util.pp;
+
+import com.jogamp.opencl.CLDevice;
+import com.jogamp.opencl.util.pp.Scan.Op;
+import com.jogamp.common.nio.Buffers;
+import com.jogamp.opencl.CLCommandQueue;
+import com.jogamp.opencl.CLContext;
+import com.jogamp.opencl.CLPlatform;
+import com.jogamp.opencl.TestUtils;
+import java.nio.FloatBuffer;
+import java.nio.IntBuffer;
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+import static java.lang.System.*;
+
+
+/**
+ *
+ * @author Michael Bien
+ */
+public class ScanTest {
+
+
+ @Test
+ public void testSmallScan() {
+ CLContext context = CLContext.create(getDevice());
+
+ try{
+ CLCommandQueue queue = context.getMaxFlopsDevice().createCommandQueue();
+
+ int[][] in = new int[][]{ { 4, 0, 5, 5, 0, 5, 5, 1 }, //even
+ { 4, 0, 5, 5, 0, 5, 5, 1, 3 } };//odd
+
+ int[] inclusive = new int[] { 4, 4, 9,14,14,19,24,27,28 };
+ int[] exclusive = new int[] { 0, 4, 4, 9,14,14,19,24,27 };
+
+ for (int i = 0; i < in.length; i++) {
+
+ IntBuffer input = Buffers.newDirectIntBuffer(in[i]);
+ IntBuffer output = Buffers.newDirectIntBuffer(input.capacity());
+
+ out.println((input.capacity()%2==0?"even":"odd") + " array lenght");
+
+ Scan<IntBuffer> scan = Scan.create(context, Op.ADD, input.getClass());
+ scan.scan(queue, input, output);
+
+ while(output.hasRemaining()) {
+ int value = output.get();
+// System.out.println(value);
+ assertEquals(exclusive[output.position()-1], value);
+ }
+
+ scan.release();
+
+ }
+ }finally{
+ context.release();
+ }
+ }
+
+ @Test
+ public void testSmallScanSizeLimit() {
+
+ CLContext context = CLContext.create(getDevice());
+
+ try{
+ CLCommandQueue queue = context.getMaxFlopsDevice().createCommandQueue();
+
+ float[] exclusive = new float[queue.getDevice().getMaxWorkGroupSize()*2];
+
+ FloatBuffer input = Buffers.newDirectFloatBuffer(exclusive.length);
+ FloatBuffer output = Buffers.newDirectFloatBuffer(input.capacity());
+
+ TestUtils.fillBuffer(input, 42);
+ long time = nanoTime();
+ for (int i = 1; i < exclusive.length; i++) {
+ exclusive[i] = exclusive[i-1]+input.get(i-1);
+ }
+ out.println("delta "+(nanoTime()-time));
+
+ Scan<FloatBuffer> scan = Scan.create(context, Op.ADD, input.getClass());
+ time = nanoTime();
+ scan.scan(queue, input, output);
+ out.println("delta "+(nanoTime()-time));
+
+ while(output.hasRemaining()) {
+ float value = output.get();
+ assertEquals("@"+(output.position()-1),exclusive[output.position()-1], value, 0.1f);
+ }
+
+ scan.release();
+
+ }finally{
+ context.release();
+ }
+ }
+
+ private CLDevice getDevice() {
+ return CLPlatform.listCLPlatforms()[0].getMaxFlopsDevice();
+ }
+
+}