A Rust implementation of the Khronos OpenCL 3.0 API.
The ffi modules provide unsafe Foreign Function Interfaces for the OpenCL C functions, while types contains all the OpenCL API data types.
Most of the other modules are named after their equivalent OpenCL objects and provide simple, safe functions around the C API functions that return Rust Result types. The exceptions are:
InfoType
) to hold the
OpenCL types that can be returned from OpenCL "Info" functions, e.g.
clGetPlatformInfo, clGetDeviceInfo, clGetProgramInfo, etc.InfoType
in a Rust Result.