C Specification
To decrement a command-buffer’s reference count, call the function
// Provided by cl_khr_command_buffer
cl_int clReleaseCommandBufferKHR(
cl_command_buffer_khr command_buffer);
clReleaseCommandBufferKHR is provided by the cl_khr_command_buffer extension.
|
Description
|
After the command_buffer reference count becomes zero and has finished execution, the command-buffer is deleted. |
clReleaseCommandBufferKHR returns CL_SUCCESS if the function is executed
successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_if command_buffer is not a valid command-buffer.COMMAND_ BUFFER_ KHR -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the device.OF_ RESOURCES -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the host.OF_ HOST_ MEMORY
Document Notes
For more information, see the OpenCL Specification
This page is extracted from the OpenCL Specification. Fixes and changes should be made to the Specification, not directly.