Skip to content
Snippets Groups Projects
Commit b019307e authored by Gary Frost's avatar Gary Frost
Browse files

No commit message

No commit message
parent d6f96303
No related merge requests found
package com.amd.aparapi.sample.convolution;
package com.amd.aparapi.test.runtime;
import org.junit.Test;
import com.amd.aparapi.Kernel;
import com.amd.aparapi.Range;
public class Test12x4_4x2{
public static void main(String[] _args) {
@Test public void test() {
// globalThreadId, threadId, globalX, globalY, localX, localY
final int[][] test = new int[][] {
{
......@@ -490,6 +492,7 @@ public class Test12x4_4x2{
}
};
kernel.setExecutionMode(Kernel.EXECUTION_MODE.JTP);
kernel.execute(Range.create2D(12, 4, 4, 2));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment