C Specification
To release a kernel object, call the function
// Provided by CL_VERSION_1_0
cl_int clReleaseKernel(
cl_kernel kernel);
Description
The kernel reference count is decremented.
The kernel object is deleted once the number of instances that are retained to kernel become zero and the kernel object is no longer needed by any enqueued commands that use kernel. Using this function to release a reference that was not obtained by creating the object or by calling clRetainKernel causes undefined behavior.
clReleaseKernel returns CL_SUCCESS if the function is executed
successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_if kernel is not a valid kernel object.KERNEL -
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.