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

Comparing OpenCL/Changes (file contents):
Revision 1.8 by root, Thu Nov 17 03:05:56 2011 UTC vs.
Revision 1.42 by root, Tue Apr 24 13:30:49 2012 UTC

1Revision history for Perl extension OpenCL. 1Revision history for Perl extension OpenCL.
2 2
3TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clCreateProgramWithBinary.html
4TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clSetEventCallback.html, *pfn
5TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clSetMemObjectDestructorCallback.html, *pfn
6TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clEnqueueUnmapMemObject.html
7TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clEnqueueMapBuffer.html
8TODO: http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clEnqueueMapImage.html
9TODO: CL_IMAGE_FORMAT
10TODO: ->build on multiple devices
11TODO: some convenience methods maybe?
12TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clCompileProgram.html
13TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clLinkProgram.html
14TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clCreateProgramWithBuiltInKernels.html
15TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clCreateSubDevices.html
16TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clEnqueueFillBuffer.html
17TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clEnqueueFillImage.html
18TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clEnqueueMigrateMemObjects.html
19TODO: http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clGetKernelArgInfo.html (also generic accessor)
20TODO: ->id method that returns the underlying object id?
21TODO: allow "prefer 1.2/1.1 api" or "ignore 1.2 api"
22
23 - enqueue_acquire/release_gl_objects did not return an event object.
24 - OpenCL::errno did not return the correct value.
25 - allow undef values in event wait lists, for convenience.
26 - implement $program->kernels_in_program.
27 - add opencl 1.2 constants.
28 - implement $ctx->image, $ctx->gl_texture, $platform->unload_compiler
29 (opencl 1.2).
30 - port image2d and image3d to the opencl 1.2 API.
31 - port enqueue_marker/barrier to the opencl 1.2 API, and croak
32 if the user requests something that 1.1 cannot do when compiled
33 against 1.1. This slightly changes the API for enqueue_barrier,
34 which now checks the context it is called in.
35
360.96 Fri Apr 20 22:23:58 CEST 2012
37 - ->enqueue_write_buffer actually called enqueue_read_buffer. d'oh.
38 - new $kernel->set_local function, to size local buffer arguments.
39 - use finish, not flush, in examples.
40
410.95 Thu Apr 19 21:25:32 CEST 2012
42 - add lengthy opengl sharing example.
43 - support property lists in CreateContext* calls.
44 - support some opengl sharing extensions
45 (gl_buffer, gl_texture[23]d, gl_renderbuffer).
46 - support some cl_khr_gl_sharing extensions.
47 - add some extension constants (cl_gl.h cl_ext.h, cl_d3d10.h).
48 - auto-generate error codes (and include gl+d3d extensions).
49
500.92 Mon Apr 16 08:39:21 CEST 2012
51 - work around some bugs in amd's opencl implementation (INVALID_HOST_PTR
52 when value deosn't matter).
53 - minor documentation fix (patch by Maik Hentsche).
54
550.91 Sun Dec 11 00:05:02 CET 2011
56 - introduce $buffer_obj->sub_buffer_region method and a new class, OpenCL::BufferObj
57 for a subbuffer is a buffer without sub_buffer methods!
58 - support apple using a different location for opencl headers - untested.
59 - be more strict when passing event lists.
60
610.59 Tue Nov 22 11:44:32 CET 2011
62 - provide $program->binaries method.
63 - provide $queue->enqueue_read_buffer_rect method.
64 - provide $queue->enqueue_write_buffer_rect method.
65 - coalesce like-typed accessor methods into the same xs function and
66 multiple ALIASes - this reduces the OpenCL codesize from 162kb to
67 132kb on my system.
68 - minor doc improvements.
69
700.55 Sun Nov 20 11:19:25 CET 2011
71 - semi-automatically generate query methods for almost all clGet*Info names.
72 - provide cl_ext.h constants.
73 - provide OpenCL::Image->image_info method.
74 - provide OpenCL::Event->profiling_info method.
75 - provide OpenCL::Kernel->work_group_info method.
76
770.15 Thu Nov 17 07:22:11 CET 2011
78 - include slice_pitch in enqueue_write_image (can be 0).
79 - check length in enqueue_write_image.
80 - properly calculate size in enqueue_read_image.
81 - likewise, include row_pitch and slice_pitch in image2d and image3d,
82 which must be nonzero right now, too, sorry.
83 - allow undef or missing data scalar for image2d and image3d.
3 - fix enqueue_copy_image prototype. 84 - fix enqueue_copy_image prototype.
4 - fix formatting. 85 - fix formatting.
5 86
60.14 Thu Nov 17 04:04:23 CET 2011 870.14 Thu Nov 17 04:04:23 CET 2011
7 - major incompatibilities due to API cleanup, the AI should now be 88 - major incompatibilities due to API cleanup, the API should now be
8 mostly stable, if incomplete. 89 mostly stable, if incomplete.
9 - fix prerequisites. 90 - fix prerequisites.
10 - replaced all _simple functions by "full" implementations, with some 91 - replaced all _simple functions by "full" implementations, with some
11 parameters marked for future expansion - that means their API 92 parameters marked for future expansion - that means their API
12 should be stable from now on: 93 should be stable from now on:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines