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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
package com.mbien.opencl;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.Collections;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
import static com.mbien.opencl.CLException.*;
/**
*
* @author Michael Bien
*/
public final class CLDevice {
private final CL cl;
private CLContext context;
/**
* OpenCL device id for this device.
*/
public final long ID;
CLDevice(CL cl, long id) {
this.cl = cl;
this.ID = id;
}
CLDevice(CLContext context, long id) {
this.context = context;
this.cl = context.cl;
this.ID = id;
}
public CLCommandQueue createCommandQueue() {
return createCommandQueue(0);
}
public CLCommandQueue createCommandQueue(CLCommandQueue.Mode property) {
return createCommandQueue(property.CL_QUEUE_MODE);
}
public CLCommandQueue createCommandQueue(CLCommandQueue.Mode... properties) {
int flags = 0;
if(properties != null) {
for (int i = 0; i < properties.length; i++) {
flags |= properties[i].CL_QUEUE_MODE;
}
}
return createCommandQueue(flags);
}
public CLCommandQueue createCommandQueue(long properties) {
if(context == null)
throw new IllegalStateException("this device is not associated with a context");
return context.createCommandQueue(this, properties);
}
/*keep this package private for now, may be null*/
CLContext getContext() {
return context;
}
/**
* Returns the name of this device.
*/
public String getName() {
return getInfoString(CL.CL_DEVICE_NAME);
}
/**
* Returns the OpenCL profile of this device.
*/
public String getProfile() {
return getInfoString(CL.CL_DEVICE_PROFILE);
}
/**
* Returns the vendor of this device.
*/
public String getVendor() {
return getInfoString(CL.CL_DEVICE_VENDOR);
}
/**
* Returns the type of this device.
*/
public Type getType() {
return Type.valueOf((int)getInfoLong(CL.CL_DEVICE_TYPE));
}
/**
* Returns the number of parallel compute cores on the OpenCL device.
* The minimum value is 1.
*/
public int getMaxComputeUnits() {
return (int) getInfoLong(CL.CL_DEVICE_MAX_COMPUTE_UNITS);
}
/**
* Returns the maximum number of work-items in a work-group executing
* a kernel using the data parallel execution model.
* The minimum value is 1.
*/
public int getMaxWorkGroupSize() {
return (int) getInfoLong(CL.CL_DEVICE_MAX_WORK_GROUP_SIZE);
}
/**
* Returns the maximum configured clock frequency of the device in MHz.
*/
public int getMaxClockFrequency() {
return (int) (getInfoLong(CL.CL_DEVICE_MAX_CLOCK_FREQUENCY));
}
/**
* Returns the maximum dimensions that specify the global and local work-item
* IDs used by the data parallel execution model.
* The minimum value is 3.
*/
public int getMaxWorkItemDimensions() {
return (int) getInfoLong(CL.CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS);
}
/**
* Returns the global memory size in bytes.
*/
public long getGlobalMemSize() {
return getInfoLong(CL.CL_DEVICE_GLOBAL_MEM_SIZE);
}
/**
* Returns the local memory size in bytes.
*/
public long getLocalMemSize() {
return getInfoLong(CL.CL_DEVICE_LOCAL_MEM_SIZE);
}
/**
* Returns the max size in bytes of a constant buffer allocation.
* The minimum value is 64 KB.
*/
public long getMaxConstantBufferSize() {
return getInfoLong(CL.CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE);
}
/**
* Returns true if this device is available.
*/
public boolean isAvailable() {
return getInfoLong(CL.CL_DEVICE_AVAILABLE) == CL.CL_TRUE;
}
/**
* Returns false if the implementation does not have a compiler available to
* compile the program source. Is true if the compiler is available.
* This can be false for the OpenCL ES profile only.
*/
public boolean isCompilerAvailable() {
return getInfoLong(CL.CL_DEVICE_COMPILER_AVAILABLE) == CL.CL_TRUE;
}
/**
* Returns all device extension names as unmodifiable Set.
*/
public Set<String> getExtensions() {
String ext = getInfoString(CL.CL_DEVICE_EXTENSIONS);
Scanner scanner = new Scanner(ext);
Set<String> extSet = new HashSet<String>();
while(scanner.hasNext())
extSet.add(scanner.next());
return Collections.unmodifiableSet(extSet);
}
//TODO CL_DEVICE_IMAGE_SUPPORT
//TODO CL_DEVICE_MAX_WORK_ITEM_SIZES
private final long getInfoLong(int key) {
ByteBuffer bb = ByteBuffer.allocate(8);
bb.order(ByteOrder.nativeOrder());
int ret = cl.clGetDeviceInfo(ID, key, bb.capacity(), bb, null, 0);
checkForError(ret, "can not receive device info");
return bb.getLong();
}
public final String getInfoString(int key) {
long[] longBuffer = new long[1];
ByteBuffer bb = ByteBuffer.allocate(512);
int ret = cl.clGetDeviceInfo(ID, key, bb.capacity(), bb, longBuffer, 0);
checkForError(ret, "can not receive device info string");
return new String(bb.array(), 0, (int)longBuffer[0]);
}
@Override
public String toString() {
return "CLDevice [id: " + ID
+ " name: " + getName()
+ " type: " + getType()
+ " profile: " + getProfile()+"]";
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final CLDevice other = (CLDevice) obj;
if (this.ID != other.ID) {
return false;
}
return true;
}
@Override
public int hashCode() {
int hash = 3;
hash = 79 * hash + (int) (this.ID ^ (this.ID >>> 32));
return hash;
}
/**
* Enumeration for the type of a device.
*/
public enum Type {
/**
* CL_DEVICE_TYPE_CPU
*/
CPU(CL.CL_DEVICE_TYPE_CPU),
/**
* CL_DEVICE_TYPE_GPU
*/
GPU(CL.CL_DEVICE_TYPE_GPU),
/**
* CL_DEVICE_TYPE_ACCELERATOR
*/
ACCELERATOR(CL.CL_DEVICE_TYPE_ACCELERATOR),
/**
* CL_DEVICE_TYPE_DEFAULT. This type can be used for creating a context on
* the default device, a single device can never have this type.
*/
DEFAULT(CL.CL_DEVICE_TYPE_DEFAULT),
/**
* CL_DEVICE_TYPE_ALL. This type can be used for creating a context on
* all devices, a single device can never have this type.
*/
ALL(CL.CL_DEVICE_TYPE_ALL);
/**
* Value of wrapped OpenCL device type.
*/
public final long CL_TYPE;
private Type(long CL_TYPE) {
this.CL_TYPE = CL_TYPE;
}
public static Type valueOf(long clDeviceType) {
if(clDeviceType == CL.CL_DEVICE_TYPE_ALL)
return ALL;
switch((int)clDeviceType) {
case(CL.CL_DEVICE_TYPE_DEFAULT):
return DEFAULT;
case(CL.CL_DEVICE_TYPE_CPU):
return CPU;
case(CL.CL_DEVICE_TYPE_GPU):
return GPU;
case(CL.CL_DEVICE_TYPE_ACCELERATOR):
return ACCELERATOR;
}
return null;
}
}
}
|