JOCL OpenCL 1.1 support
Posted by
Michael Bien on
Jun 16, 2010; 11:37am
URL: https://forum.jogamp.org/JOCL-OpenCL-1-1-support-tp899589.html
Hello everyone,
I forgot to mention on this list that JOCL already supports OpenCL 1.1 since the release day.
There is only one minor incompatible change:
CLCommandQueue.setProperties(...) does no longer exist, since it has been deprecated in 1.1 for good reasons (race conditions etc).
(
http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clSetCommandQueueProperty.html)
If you was using this method you might consider using multiple specialized queues, e.g one in-order and one out-of-order queue instead of switching the properties of one queue at runtime.
So we decided to remove it instead of introducing profiles like in JOGL for now. Profiles might appear later to solve more severe incompatibility issues in future OpenCL releases.
I will update the high level binding to better expose the new functionality the next days.
best regards,
michael