C Specification
To unload an OpenCL compiler for a platform, call the function
// Provided by CL_VERSION_1_2
cl_int clUnloadPlatformCompiler(
cl_platform_id platform);
| clUnloadPlatformCompiler is missing before version 1.2. |
Description
This function allows the implementation to release the resources allocated by the OpenCL compiler for platform. This is a hint from the application and does not guarantee that the compiler will not be used in the future or that the compiler will actually be unloaded by the implementation. Calls to clBuildProgram, clCompileProgram or clLinkProgram after clUnloadPlatformCompiler will reload the compiler, if necessary, to build the appropriate program executable.
clUnloadPlatformCompiler returns CL_SUCCESS if the function is executed
successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_if platform is not a valid platform.PLATFORM
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.