ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/OpenCL.xs
(Generate patch)

Comparing OpenCL/OpenCL.xs (file contents):
Revision 1.1 by root, Tue Nov 15 06:50:30 2011 UTC vs.
Revision 1.2 by root, Tue Nov 15 09:24:40 2011 UTC

6 6
7typedef cl_platform_id OpenCL__Platform; 7typedef cl_platform_id OpenCL__Platform;
8typedef cl_device_id OpenCL__Device; 8typedef cl_device_id OpenCL__Device;
9typedef cl_context OpenCL__Context; 9typedef cl_context OpenCL__Context;
10typedef cl_command_queue OpenCL__Queue; 10typedef cl_command_queue OpenCL__Queue;
11typedef cl_mem OpenCL__Memory;
12typedef cl_sampler OpenCL__Sampler;
13typedef cl_program OpenCL__Program;
14typedef cl_kernel OpenCL__Kernel;
15typedef cl_event OpenCL__Event;
11 16
12static const struct { 17static const struct {
13 IV iv; 18 IV iv;
14 const char *name; 19 const char *name;
15} cl_error[] = { 20} cl_error[] = {
31 36
32 return numbuf; 37 return numbuf;
33} 38}
34 39
35#define FAIL(name,res) \ 40#define FAIL(name,res) \
36 croak (# name ": %s", clstrerror (res)); 41 croak ("cl" # name ": %s", clstrerror (res));
37 42
38#define NEED_SUCCESS(name,args) \ 43#define NEED_SUCCESS(name,args) \
39 do { \ 44 do { \
40 cl_int res = name args; \ 45 cl_int res = cl ## name args; \
41 \ 46 \
42 if (res) \ 47 if (res) \
43 FAIL (name, res); \ 48 FAIL (name, res); \
44 } while (0) 49 } while (0)
45 50
51#define NEW_MORTAL_OBJ(class,ptr) sv_setref_pv (sv_newmortal (), class, ptr)
52#define XPUSH_NEW_OBJ(class,ptr) XPUSHs (NEW_MORTAL_OBJ (class, ptr))
53
54/*TODO*/
55#define EVENT_LIST(items,count) cl_uint event_list_count = 0; cl_event *event_list_ptr = 0
56
57#define INFO(class) \
58{ \
59 size_t size; \
60 SV *sv; \
61 \
62 NEED_SUCCESS (Get ## class ## Info, (this, name, 0, 0, &size)); \
63 sv = sv_2mortal (newSV (size)); \
64 SvUPGRADE (sv, SVt_PV); \
65 SvPOK_only (sv); \
66 SvCUR_set (sv, size); \
67 NEED_SUCCESS (Get ## class ## Info, (this, name, size, SvPVX (sv), 0)); \
68 XPUSHs (sv); \
69}
70
46MODULE = OpenCL PACKAGE = OpenCL 71MODULE = OpenCL PACKAGE = OpenCL
72
73PROTOTYPES: ENABLE
47 74
48BOOT: 75BOOT:
49{ 76{
50 HV *stash = gv_stashpv ("OpenCL", 1); 77 HV *stash = gv_stashpv ("OpenCL", 1);
51 static const struct { 78 static const struct {
65{ 92{
66 cl_platform_id *list; 93 cl_platform_id *list;
67 cl_uint count; 94 cl_uint count;
68 int i; 95 int i;
69 96
70 NEED_SUCCESS (clGetPlatformIDs, (0, 0, &count)); 97 NEED_SUCCESS (GetPlatformIDs, (0, 0, &count));
71 Newx (list, count, cl_platform_id); 98 Newx (list, count, cl_platform_id);
72 NEED_SUCCESS (clGetPlatformIDs, (count, list, 0)); 99 NEED_SUCCESS (GetPlatformIDs, (count, list, 0));
73 100
74 EXTEND (SP, count); 101 EXTEND (SP, count);
75 for (i = 0; i < count; ++i) 102 for (i = 0; i < count; ++i)
76 PUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Platform", list [i])); 103 PUSHs (NEW_MORTAL_OBJ ("OpenCL::Platform", list [i]));
77 104
78 Safefree (list); 105 Safefree (list);
79} 106}
80 107
81void 108void
84{ 111{
85 cl_int res; 112 cl_int res;
86 cl_context ctx = clCreateContextFromType (0, type, 0, 0, &res); 113 cl_context ctx = clCreateContextFromType (0, type, 0, 0, &res);
87 114
88 if (res) 115 if (res)
89 FAIL (clCreateContextFromType, res); 116 FAIL (CreateContextFromType, res);
90 117
91 XPUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Context", ctx)); 118 XPUSH_NEW_OBJ ("OpenCL::Context", ctx);
92} 119}
120
121void
122wait_for_events (...)
123 CODE:
124{
125 EVENT_LIST (0, items);
126 NEED_SUCCESS (WaitForEvents, (event_list_count, event_list_ptr));
127}
128
129PROTOTYPES: DISABLE
93 130
94MODULE = OpenCL PACKAGE = OpenCL::Platform 131MODULE = OpenCL PACKAGE = OpenCL::Platform
95 132
96void 133void
97info (OpenCL::Platform this, cl_platform_info name) 134info (OpenCL::Platform this, cl_platform_info name)
135 PPCODE:
136 INFO (Platform)
137
138void
139devices (OpenCL::Platform this, cl_device_type type = CL_DEVICE_TYPE_ALL)
140 PPCODE:
141{
142 cl_device_id *list;
143 cl_uint count;
144 int i;
145
146 NEED_SUCCESS (GetDeviceIDs, (this, type, 0, 0, &count));
147 Newx (list, count, cl_device_id);
148 NEED_SUCCESS (GetDeviceIDs, (this, type, count, list, 0));
149
150 EXTEND (SP, count);
151 for (i = 0; i < count; ++i)
152 PUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Device", list [i]));
153
154 Safefree (list);
155}
156
157void
158context_from_type_simple (OpenCL::Platform this, cl_device_type type = CL_DEVICE_TYPE_DEFAULT)
159 PPCODE:
160{
161 cl_int res;
162 cl_context_properties props[] = { CL_CONTEXT_PLATFORM, (cl_context_properties)this, 0 };
163 cl_context ctx = clCreateContextFromType (props, type, 0, 0, &res);
164
165 if (res)
166 FAIL (CreateContextFromType, res);
167
168 XPUSH_NEW_OBJ ("OpenCL::Context", ctx);
169}
170
171void
172unload_compiler ()
173 CODE:
174 NEED_SUCCESS (UnloadCompiler, ());
175
176MODULE = OpenCL PACKAGE = OpenCL::Device
177
178void
179info (OpenCL::Device this, cl_device_info name)
180 PPCODE:
181 INFO (Device)
182
183void
184context_simple (OpenCL::Device this)
185 PPCODE:
186{
187 cl_int res;
188 cl_context ctx = clCreateContext (0, 1, &this, 0, 0, &res);
189
190 if (res)
191 FAIL (CreateContext, res);
192
193 XPUSH_NEW_OBJ ("OpenCL::Context", ctx);
194}
195
196MODULE = OpenCL PACKAGE = OpenCL::Context
197
198void
199DESTROY (OpenCL::Context context)
200 CODE:
201 clReleaseContext (context);
202
203void
204info (OpenCL::Context this, cl_context_info name)
205 PPCODE:
206 INFO (Context)
207
208void
209command_queue_simple (OpenCL::Context this, OpenCL::Device device)
210 PPCODE:
211{
212 cl_int res;
213 cl_command_queue queue = clCreateCommandQueue (this, device, 0, &res);
214
215 if (res)
216 FAIL (CreateCommandQueue, res);
217
218 XPUSH_NEW_OBJ ("OpenCL::Queue", queue);
219}
220
221void
222buffer (OpenCL::Context this, cl_mem_flags flags, size_t len)
223 PPCODE:
224{
225 cl_int res;
226 cl_mem mem = clCreateBuffer (this, flags, len, 0, &res);
227
228 if (res)
229 FAIL (CreateBuffer, res);
230
231 XPUSH_NEW_OBJ ("OpenCL::Memory", mem);
232}
233
234void
235buffer_sv (OpenCL::Context this, cl_mem_flags flags, SV *data)
236 PPCODE:
237{
238 STRLEN len;
239 char *ptr = SvPVbyte (data, len);
240 cl_int res;
241 cl_mem mem = clCreateBuffer (this, flags, len, ptr, &res);
242
243 if (res)
244 FAIL (CreateBuffer, res);
245
246 XPUSH_NEW_OBJ ("OpenCL::Memory", mem);
247}
248
249void
250sampler (OpenCL::Context this, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode)
251 PPCODE:
252{
253 cl_int res;
254 cl_sampler sampler = clCreateSampler (this, normalized_coords, addressing_mode, filter_mode, &res);
255
256 if (res)
257 FAIL (CreateSampler, res);
258
259 XPUSH_NEW_OBJ ("OpenCL::Sampler", sampler);
260}
261
262void
263program_with_source (OpenCL::Context this, SV *program)
264 PPCODE:
265{
266 STRLEN len;
267 size_t len2;
268 const char *ptr = SvPVbyte (program, len);
269 cl_int res;
270 cl_program prog;
271
272 len2 = len;
273 prog = clCreateProgramWithSource (this, 1, &ptr, &len2, &res);
274
275 if (res)
276 FAIL (CreateProgramWithSource, res);
277
278 XPUSH_NEW_OBJ ("OpenCL::Program", prog);
279}
280
281MODULE = OpenCL PACKAGE = OpenCL::Queue
282
283void
284DESTROY (OpenCL::Queue this)
285 CODE:
286 clReleaseCommandQueue (this);
287
288void
289info (OpenCL::Queue this, cl_command_queue_info name)
290 PPCODE:
291 INFO (CommandQueue)
292
293void
294enqueue_read_buffer (OpenCL::Queue this, OpenCL::Memory mem, cl_bool blocking, size_t offset, size_t len, SV *data, ...)
295 PPCODE:
296{
297 cl_event ev = 0;
298 EVENT_LIST (6, items - 6);
299
300 SvUPGRADE (data, SVt_PV);
301 SvGROW (data, len);
302 SvPOK_only (data);
303 SvCUR_set (data, len);
304 NEED_SUCCESS (EnqueueReadBuffer, (this, mem, blocking, offset, len, SvPVX (data), event_list_count, event_list_ptr, GIMME_V != G_VOID ? &ev : 0));
305
306 if (ev)
307 XPUSH_NEW_OBJ ("OpenCL::Event", ev);
308}
309
310void
311enqueue_write_buffer (OpenCL::Queue this, OpenCL::Memory mem, cl_bool blocking, size_t offset, SV *data, ...)
312 PPCODE:
313{
314 cl_event ev = 0;
315 STRLEN len;
316 char *ptr = SvPVbyte (data, len);
317 EVENT_LIST (5, items - 5);
318
319 NEED_SUCCESS (EnqueueReadBuffer, (this, mem, blocking, offset, len, ptr, event_list_count, event_list_ptr, GIMME_V != G_VOID ? &ev : 0));
320
321 if (ev)
322 XPUSH_NEW_OBJ ("OpenCL::Event", ev);
323}
324
325void
326enqueue_copy_buffer (OpenCL::Queue this, OpenCL::Memory src, OpenCL::Memory dst, size_t src_offset, size_t dst_offset, size_t len, ...)
327 PPCODE:
328{
329 cl_event ev = 0;
330 EVENT_LIST (6, items - 6);
331
332 NEED_SUCCESS (EnqueueCopyBuffer, (this, src, dst, src_offset, dst_offset, len, event_list_count, event_list_ptr, GIMME_V != G_VOID ? &ev : 0));
333
334 if (ev)
335 XPUSH_NEW_OBJ ("OpenCL::Event", ev);
336}
337
338void
339enqueue_marker (OpenCL::Queue this)
340 PPCODE:
341{
342 cl_event ev;
343 NEED_SUCCESS (EnqueueMarker, (this, &ev));
344 XPUSH_NEW_OBJ ("OpenCL::Event", ev);
345}
346
347void
348enqueue_wait_for_events (OpenCL::Queue this, ...)
349 CODE:
350{
351 EVENT_LIST (1, items - 1);
352 NEED_SUCCESS (EnqueueWaitForEvents, (this, event_list_count, event_list_ptr));
353}
354
355void
356enqueue_barrier (OpenCL::Queue this)
357 CODE:
358 NEED_SUCCESS (EnqueueBarrier, (this));
359
360MODULE = OpenCL PACKAGE = OpenCL::Memory
361
362void
363DESTROY (OpenCL::Memory this)
364 CODE:
365 clReleaseMemObject (this);
366
367void
368info (OpenCL::Memory this, cl_mem_info name)
369 PPCODE:
370 INFO (MemObject)
371
372MODULE = OpenCL PACKAGE = OpenCL::Sampler
373
374void
375DESTROY (OpenCL::Sampler this)
376 CODE:
377 clReleaseSampler (this);
378
379void
380info (OpenCL::Sampler this, cl_sampler_info name)
381 PPCODE:
382 INFO (Sampler)
383
384MODULE = OpenCL PACKAGE = OpenCL::Program
385
386void
387DESTROY (OpenCL::Program this)
388 CODE:
389 clReleaseProgram (this);
390
391void
392info (OpenCL::Program this, cl_program_info name)
393 PPCODE:
394 INFO (Program)
395
396void
397build (OpenCL::Program this, OpenCL::Device device, SV *options = &PL_sv_undef)
398 CODE:
399 NEED_SUCCESS (BuildProgram, (this, 1, &device, SvPVbyte_nolen (options), 0, 0));
400
401void
402build_info (OpenCL::Program this, OpenCL::Device device, cl_program_build_info name)
98 PPCODE: 403 PPCODE:
99{ 404{
100 size_t size; 405 size_t size;
101 SV *sv; 406 SV *sv;
102 407
103 NEED_SUCCESS (clGetPlatformInfo, (this, name, 0, 0, &size)); 408 NEED_SUCCESS (GetProgramBuildInfo, (this, device, name, 0, 0, &size));
104 sv = sv_2mortal (newSV (size)); 409 sv = sv_2mortal (newSV (size));
105 SvUPGRADE (sv, SVt_PV); 410 SvUPGRADE (sv, SVt_PV);
106 SvPOK_only (sv); 411 SvPOK_only (sv);
107 SvCUR_set (sv, size); 412 SvCUR_set (sv, size);
108 NEED_SUCCESS (clGetPlatformInfo, (this, name, size, SvPVX (sv), 0)); 413 NEED_SUCCESS (GetProgramBuildInfo, (this, device, name, size, SvPVX (sv), 0));
109 XPUSHs (sv); 414 XPUSHs (sv);
110} 415}
111 416
112void 417void
113devices (OpenCL::Platform this, cl_device_type type = CL_DEVICE_TYPE_ALL) 418kernel (OpenCL::Program program, SV *function)
114 PPCODE:
115{
116 cl_device_id *list;
117 cl_uint count;
118 int i;
119
120 NEED_SUCCESS (clGetDeviceIDs, (this, type, 0, 0, &count));
121 Newx (list, count, cl_device_id);
122 NEED_SUCCESS (clGetDeviceIDs, (this, type, count, list, 0));
123
124 EXTEND (SP, count);
125 for (i = 0; i < count; ++i)
126 PUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Device", list [i]));
127
128 Safefree (list);
129}
130
131void
132context_from_type_simple (OpenCL::Platform this, cl_device_type type = CL_DEVICE_TYPE_DEFAULT)
133 PPCODE:
134{
135 cl_int res;
136 cl_context_properties props[] = { CL_CONTEXT_PLATFORM, (cl_context_properties)this, 0 };
137 cl_context ctx = clCreateContextFromType (props, type, 0, 0, &res);
138
139 if (res)
140 FAIL (clCreateContextFromType, res);
141
142 XPUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Context", ctx));
143}
144
145MODULE = OpenCL PACKAGE = OpenCL::Device
146
147void
148info (OpenCL::Device this, cl_device_info name)
149 PPCODE:
150{
151 size_t size;
152 SV *sv;
153
154 NEED_SUCCESS (clGetDeviceInfo, (this, name, 0, 0, &size));
155 sv = sv_2mortal (newSV (size));
156 SvUPGRADE (sv, SVt_PV);
157 SvPOK_only (sv);
158 SvCUR_set (sv, size);
159 NEED_SUCCESS (clGetDeviceInfo, (this, name, size, SvPVX (sv), 0));
160 XPUSHs (sv);
161}
162
163void
164context_simple (OpenCL::Device this)
165 PPCODE:
166{
167 cl_int res;
168 cl_context ctx = clCreateContext (0, 1, &this, 0, 0, &res);
169
170 if (res)
171 FAIL (clCreateContext, res);
172
173 XPUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Context", ctx));
174}
175
176MODULE = OpenCL PACKAGE = OpenCL::Context
177
178void
179DESTROY (OpenCL::Context context)
180 CODE: 419 PPCODE:
181 clReleaseContext (context);
182
183void
184info (OpenCL::Context this, cl_context_info name)
185 PPCODE:
186{ 420{
187 size_t size;
188 SV *sv;
189
190 NEED_SUCCESS (clGetContextInfo, (this, name, 0, 0, &size));
191 sv = sv_2mortal (newSV (size));
192 SvUPGRADE (sv, SVt_PV);
193 SvPOK_only (sv);
194 SvCUR_set (sv, size);
195 NEED_SUCCESS (clGetContextInfo, (this, name, size, SvPVX (sv), 0));
196 XPUSHs (sv);
197}
198
199void
200command_queue_simple (OpenCL::Context this, OpenCL::Device device)
201 PPCODE:
202{
203 cl_int res; 421 cl_int res;
204 cl_command_queue queue = clCreateCommandQueue (this, device, 0, &res); 422 cl_kernel kernel = clCreateKernel (program, SvPVbyte_nolen (function), &res);
205 423
206 if (res) 424 if (res)
207 FAIL (clCreateCommandQueue, res); 425 FAIL (CreateKernel, res);
208 426
209 XPUSHs (sv_setref_pv (sv_newmortal (), "OpenCL::Queue", queue)); 427 XPUSH_NEW_OBJ ("OpenCL::Kernel", kernel);
210} 428}
211 429
212MODULE = OpenCL PACKAGE = OpenCL::Queue 430MODULE = OpenCL PACKAGE = OpenCL::Kernel
213 431
214void 432void
215DESTROY (OpenCL::Queue this) 433DESTROY (OpenCL::Kernel this)
216 CODE:
217 clReleaseCommandQueue (this);
218
219void
220info (OpenCL::Queue this, cl_command_queue_info name)
221 PPCODE: 434 CODE:
222{ 435 clReleaseKernel (this);
223 size_t size;
224 SV *sv;
225 436
226 NEED_SUCCESS (clGetCommandQueueInfo, (this, name, 0, 0, &size)); 437void
227 sv = sv_2mortal (newSV (size)); 438info (OpenCL::Kernel this, cl_kernel_info name)
228 SvUPGRADE (sv, SVt_PV); 439 PPCODE:
229 SvPOK_only (sv); 440 INFO (Kernel)
230 SvCUR_set (sv, size);
231 NEED_SUCCESS (clGetCommandQueueInfo, (this, name, size, SvPVX (sv), 0));
232 XPUSHs (sv);
233}
234 441
442void
443set_bool (OpenCL::Kernel this, cl_uint idx, cl_bool value)
444 CODE:
445 clKernelSetArg (this, idx, sizeof (value), &value);
446
447MODULE = OpenCL PACKAGE = OpenCL::Event
448
449void
450DESTROY (OpenCL::Event this)
451 CODE:
452 clReleaseEvent (this);
453
454void
455info (OpenCL::Event this, cl_event_info name)
456 PPCODE:
457 INFO (Event)
458
459void
460wait (OpenCL::Event this)
461 CODE:
462 clWaitForEvents (1, &this);
463

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines