1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
package com.mbien.opencl;
import com.mbien.opencl.impl.CLImpl;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.util.Arrays;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author Michael Bien
*/
public class JOCLTest {
public JOCLTest() {
}
@Before
public void setUpClass() throws Exception {
}
@After
public void tearDownClass() throws Exception {
}
@Test
public void basicLowLevelTest() {
System.out.print("loading native libs...");
System.loadLibrary("gluegen-rt");
System.loadLibrary("jocl");
System.out.println("done");
CreateContextCallback cb = new CreateContextCallback() {
@Override
public void createContextCallback(String errinfo, ByteBuffer private_info, long cb, Object user_data) {
throw new RuntimeException(errinfo);
}
};
System.out.println("creating OpenCL context");
int ret = 0;
CL cl = new CLImpl();
int[] intBuffer = new int[1];
ret = cl.clGetPlatformIDs(0, null, 0, intBuffer, 0);
assertEquals(CL.CL_SUCCESS, ret);
System.out.println("#platforms: "+intBuffer[0]);
long[] platformId = new long[intBuffer[0]];
ret = cl.clGetPlatformIDs(platformId.length, platformId, 0, null, 0);
assertEquals(CL.CL_SUCCESS, ret);
long[] longBuffer = new long[1];
ByteBuffer bb = ByteBuffer.allocate(128);
byte[] str = new byte[128];
for (int i = 0; i < platformId.length; i++) {
long platform = platformId[i];
System.out.println("platform id: "+platform);
ret = cl.clGetPlatformInfo(platform, CL.CL_PLATFORM_PROFILE, bb.capacity(), bb, null, 0);
assertEquals(CL.CL_SUCCESS, ret);
bb.get(str);
System.out.println(" profile: "+new String(str));
Arrays.fill(str, (byte)0);
bb.rewind();
ret = cl.clGetPlatformInfo(platform, CL.CL_PLATFORM_VERSION, bb.capacity(), bb, null, 0);
assertEquals(CL.CL_SUCCESS, ret);
bb.get(str);
System.out.println(" version: "+new String(str));
Arrays.fill(str, (byte)0);
bb.rewind();
ret = cl.clGetPlatformInfo(platform, CL.CL_PLATFORM_NAME, bb.capacity(), bb, null, 0);
assertEquals(CL.CL_SUCCESS, ret);
bb.get(str);
System.out.println(" name: "+new String(str));
Arrays.fill(str, (byte)0);
bb.rewind();
ret = cl.clGetPlatformInfo(platform, CL.CL_PLATFORM_VENDOR, bb.capacity(), bb, null, 0);
assertEquals(CL.CL_SUCCESS, ret);
bb.get(str);
System.out.println(" vendor: "+new String(str));
Arrays.fill(str, (byte)0);
bb.rewind();
}
Arrays.fill(longBuffer, 0);
long context = cl.clCreateContextFromType(null, CL.CL_DEVICE_TYPE_ALL, cb, null, null);
System.out.println("context handle: "+context);
ret = cl.clGetContextInfo(context, CL.CL_CONTEXT_DEVICES, 0, null, longBuffer, 0);
assertEquals(CL.CL_SUCCESS, ret);
System.out.println("CL_CONTEXT_DEVICES result: "+longBuffer[0]);
// System.out.println("CL_CONTEXT_DEVICES result: "+buffer[1]);
}
}
|