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
|
/*
* Copyright © 2012 Intel Corporation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Benjamin Segovia <benjamin.segovia@intel.com>
*/
#include "cl_platform_id.h"
#include "cl_device_id.h"
#include "cl_internals.h"
#include "cl_utils.h"
#include "cl_driver.h"
#include "cl_device_data.h"
#include "cl_khr_icd.h"
#include "CL/cl.h"
#include <assert.h>
#include <stdio.h>
#include <string.h>
#ifndef CL_VERSION_1_2
#define CL_DEVICE_BUILT_IN_KERNELS 0x103F
#endif
static struct _cl_device_id intel_ivb_gt2_device = {
INIT_ICD(dispatch)
.max_compute_unit = 128,
.max_thread_per_unit = 8,
.max_work_item_sizes = {512, 512, 512},
.max_work_group_size = 512,
.max_clock_frequency = 1000,
.wg_sz = 1024,
.compile_wg_sz = {0},
#include "cl_gen7_device.h"
};
static struct _cl_device_id intel_ivb_gt1_device = {
INIT_ICD(dispatch)
.max_compute_unit = 64,
.max_thread_per_unit = 8,
.max_work_item_sizes = {512, 512, 512},
.max_work_group_size = 512,
.max_clock_frequency = 1000,
.wg_sz = 512,
.compile_wg_sz = {0},
#include "cl_gen7_device.h"
};
/* XXX we clone IVB for HSW now */
static struct _cl_device_id intel_hsw_device = {
INIT_ICD(dispatch)
.max_compute_unit = 64,
.max_thread_per_unit = 8,
.max_work_item_sizes = {512, 512, 512},
.max_work_group_size = 512,
.max_clock_frequency = 1000,
.wg_sz = 512,
.compile_wg_sz = {0},
#include "cl_gen75_device.h"
};
LOCAL cl_device_id
cl_get_gt_device(void)
{
cl_device_id ret = NULL;
const int device_id = cl_driver_get_device_id();
/* XXX we pick IVB for HSW now */
if (device_id == PCI_CHIP_HASWELL_M ||
device_id == PCI_CHIP_HASWELL_L ||
device_id == PCI_CHIP_HASWELL_M0 ||
device_id == PCI_CHIP_HASWELL_D0) {
intel_hsw_device.vendor_id = device_id;
intel_hsw_device.platform = intel_platform;
ret = &intel_hsw_device;
}
else if (device_id == PCI_CHIP_IVYBRIDGE_GT1 ||
device_id == PCI_CHIP_IVYBRIDGE_M_GT1 ||
device_id == PCI_CHIP_IVYBRIDGE_S_GT1) {
intel_ivb_gt1_device.vendor_id = device_id;
intel_ivb_gt1_device.platform = intel_platform;
ret = &intel_ivb_gt1_device;
}
else if (device_id == PCI_CHIP_IVYBRIDGE_GT2 ||
device_id == PCI_CHIP_IVYBRIDGE_M_GT2) {
intel_ivb_gt2_device.vendor_id = device_id;
intel_ivb_gt2_device.platform = intel_platform;
ret = &intel_ivb_gt2_device;
}
return ret;
}
LOCAL cl_int
cl_get_device_ids(cl_platform_id platform,
cl_device_type device_type,
cl_uint num_entries,
cl_device_id * devices,
cl_uint * num_devices)
{
cl_device_id device;
/* Do we have a usable device? */
device = cl_get_gt_device();
if (!device) {
if (num_devices)
*num_devices = 0;
if (devices)
*devices = 0;
return CL_DEVICE_NOT_FOUND;
} else {
if (num_devices)
*num_devices = 1;
if (devices) {
*devices = device;
(*devices)->extensions = intel_platform->extensions;
(*devices)->extensions_sz = intel_platform->extensions_sz;
}
return CL_SUCCESS;
}
}
#define DECL_FIELD(CASE,FIELD) \
case JOIN(CL_DEVICE_,CASE): \
if (param_value_size_ret) { \
*param_value_size_ret = sizeof device->FIELD; \
if (!param_value) \
return CL_SUCCESS; \
} \
if (param_value_size < sizeof device->FIELD) \
return CL_INVALID_VALUE; \
memcpy(param_value, &device->FIELD, sizeof device->FIELD); \
return CL_SUCCESS;
#define DECL_STRING_FIELD(CASE,FIELD) \
case JOIN(CL_DEVICE_,CASE): \
if (param_value_size_ret) { \
*param_value_size_ret = device->JOIN(FIELD,_sz); \
if (!param_value) \
return CL_SUCCESS; \
} \
if (param_value_size < device->JOIN(FIELD,_sz)) \
return CL_INVALID_VALUE; \
memcpy(param_value, device->FIELD, device->JOIN(FIELD,_sz)); \
return CL_SUCCESS;
LOCAL cl_int
cl_get_device_info(cl_device_id device,
cl_device_info param_name,
size_t param_value_size,
void * param_value,
size_t * param_value_size_ret)
{
if (UNLIKELY(device != &intel_ivb_gt1_device &&
device != &intel_ivb_gt2_device &&
device != &intel_hsw_device))
return CL_INVALID_DEVICE;
/* Find the correct parameter */
switch (param_name) {
DECL_FIELD(TYPE, device_type)
DECL_FIELD(VENDOR_ID, vendor_id)
DECL_FIELD(MAX_COMPUTE_UNITS, max_compute_unit)
DECL_FIELD(MAX_WORK_ITEM_DIMENSIONS, max_work_item_dimensions)
DECL_FIELD(MAX_WORK_ITEM_SIZES, max_work_item_sizes)
DECL_FIELD(MAX_WORK_GROUP_SIZE, max_work_group_size)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_CHAR, preferred_vector_width_char)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_SHORT, preferred_vector_width_short)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_INT, preferred_vector_width_int)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_LONG, preferred_vector_width_long)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_FLOAT, preferred_vector_width_float)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_DOUBLE, preferred_vector_width_double)
DECL_FIELD(PREFERRED_VECTOR_WIDTH_HALF, preferred_vector_width_half)
DECL_FIELD(NATIVE_VECTOR_WIDTH_CHAR, native_vector_width_char)
DECL_FIELD(NATIVE_VECTOR_WIDTH_SHORT, native_vector_width_short)
DECL_FIELD(NATIVE_VECTOR_WIDTH_INT, native_vector_width_int)
DECL_FIELD(NATIVE_VECTOR_WIDTH_LONG, native_vector_width_long)
DECL_FIELD(NATIVE_VECTOR_WIDTH_FLOAT, native_vector_width_float)
DECL_FIELD(NATIVE_VECTOR_WIDTH_DOUBLE, native_vector_width_double)
DECL_FIELD(NATIVE_VECTOR_WIDTH_HALF, native_vector_width_half)
DECL_FIELD(MAX_CLOCK_FREQUENCY, max_clock_frequency)
DECL_FIELD(ADDRESS_BITS, address_bits)
DECL_FIELD(MAX_MEM_ALLOC_SIZE, max_mem_alloc_size)
DECL_FIELD(IMAGE_SUPPORT, image_support)
DECL_FIELD(MAX_READ_IMAGE_ARGS, max_read_image_args)
DECL_FIELD(MAX_WRITE_IMAGE_ARGS, max_write_image_args)
DECL_FIELD(IMAGE2D_MAX_WIDTH, image2d_max_width)
DECL_FIELD(IMAGE2D_MAX_HEIGHT, image2d_max_height)
DECL_FIELD(IMAGE3D_MAX_WIDTH, image3d_max_width)
DECL_FIELD(IMAGE3D_MAX_HEIGHT, image3d_max_height)
DECL_FIELD(IMAGE3D_MAX_DEPTH, image3d_max_depth)
DECL_FIELD(MAX_SAMPLERS, max_samplers)
DECL_FIELD(MAX_PARAMETER_SIZE, max_parameter_size)
DECL_FIELD(MEM_BASE_ADDR_ALIGN, mem_base_addr_align)
DECL_FIELD(MIN_DATA_TYPE_ALIGN_SIZE, min_data_type_align_size)
DECL_FIELD(SINGLE_FP_CONFIG, single_fp_config)
DECL_FIELD(GLOBAL_MEM_CACHE_TYPE, global_mem_cache_type)
DECL_FIELD(GLOBAL_MEM_CACHELINE_SIZE, global_mem_cache_line_size)
DECL_FIELD(GLOBAL_MEM_CACHE_SIZE, global_mem_cache_size)
DECL_FIELD(GLOBAL_MEM_SIZE, global_mem_size)
DECL_FIELD(MAX_CONSTANT_BUFFER_SIZE, max_constant_buffer_size)
DECL_FIELD(MAX_CONSTANT_ARGS, max_constant_args)
DECL_FIELD(LOCAL_MEM_TYPE, local_mem_type)
DECL_FIELD(LOCAL_MEM_SIZE, local_mem_size)
DECL_FIELD(ERROR_CORRECTION_SUPPORT, error_correction_support)
DECL_FIELD(HOST_UNIFIED_MEMORY, host_unified_memory)
DECL_FIELD(PROFILING_TIMER_RESOLUTION, profiling_timer_resolution)
DECL_FIELD(ENDIAN_LITTLE, endian_little)
DECL_FIELD(AVAILABLE, available)
DECL_FIELD(COMPILER_AVAILABLE, compiler_available)
DECL_FIELD(EXECUTION_CAPABILITIES, execution_capabilities)
DECL_FIELD(QUEUE_PROPERTIES, queue_properties)
DECL_FIELD(PLATFORM, platform)
DECL_STRING_FIELD(NAME, name)
DECL_STRING_FIELD(VENDOR, vendor)
DECL_STRING_FIELD(VERSION, version)
DECL_STRING_FIELD(PROFILE, profile)
DECL_STRING_FIELD(OPENCL_C_VERSION, opencl_c_version)
DECL_STRING_FIELD(EXTENSIONS, extensions);
DECL_STRING_FIELD(BUILT_IN_KERNELS, built_in_kernels)
case CL_DRIVER_VERSION:
if (param_value_size_ret) {
*param_value_size_ret = device->driver_version_sz;
if (!param_value)
return CL_SUCCESS;
}
if (param_value_size < device->driver_version_sz)
return CL_INVALID_VALUE;
memcpy(param_value, device->driver_version, device->driver_version_sz);
return CL_SUCCESS;
default: return CL_INVALID_VALUE;
};
}
LOCAL cl_int
cl_device_get_version(cl_device_id device, cl_int *ver)
{
if (UNLIKELY(device != &intel_ivb_gt1_device &&
device != &intel_ivb_gt2_device &&
device != &intel_hsw_device))
return CL_INVALID_DEVICE;
if (ver == NULL)
return CL_SUCCESS;
if (device == &intel_ivb_gt1_device || device == &intel_ivb_gt2_device)
*ver = 7;
else
*ver = 75;
return CL_SUCCESS;
}
#undef DECL_FIELD
#define DECL_FIELD(CASE,FIELD) \
case JOIN(CL_KERNEL_,CASE): \
if (param_value_size < sizeof(((cl_device_id)NULL)->FIELD)) \
return CL_INVALID_VALUE; \
if (param_value_size_ret != NULL) \
*param_value_size_ret = sizeof(((cl_device_id)NULL)->FIELD);\
memcpy(param_value, \
&device->FIELD, \
sizeof(((cl_device_id)NULL)->FIELD)); \
return CL_SUCCESS;
LOCAL cl_int
cl_get_kernel_workgroup_info(cl_device_id device,
cl_kernel_work_group_info param_name,
size_t param_value_size,
void* param_value,
size_t* param_value_size_ret)
{
if (UNLIKELY(device != &intel_ivb_gt1_device &&
device != &intel_ivb_gt2_device))
return CL_INVALID_DEVICE;
if (UNLIKELY(param_value == NULL))
return CL_INVALID_VALUE;
switch (param_name) {
DECL_FIELD(WORK_GROUP_SIZE, wg_sz)
DECL_FIELD(COMPILE_WORK_GROUP_SIZE, compile_wg_sz)
default: return CL_INVALID_VALUE;
};
}
|