Kévin Petit
Kévin Petit
Make it clear that GPU implementations aren't required to meet the `CL_FILTER_LINEAR` precision requirements of the CTS.
See https://github.com/KhronosGroup/OpenCL-CTS/pull/1873
The CTS does not have systematic coverage for all valid cast combinations of the following form: ``` SRCTYPE src; DSTTYPE dst = (DSTTYPE)(src); ``` Many are covered indirectly as they...
The CTS uses `CL_MEM_COPY_HOST_PTR` to create images in numerous places but does not include tests focused on testing its correct operation across wide ranges of image formats, dimensions and types....
Covers all changes to align the CTS with the outcome of https://github.com/KhronosGroup/OpenCL-Docs/issues/82
See https://github.com/KhronosGroup/OpenCL-Docs/issues/875 and https://github.com/KhronosGroup/OpenCL-Docs/pull/879
This is currently documented in the OpenCL extension specification but not discoverable from this repository.
Do we really need the bindings to be declared as "deprecated" when the underlying CL function already is? See discussion on https://github.com/KhronosGroup/OpenCL-CLHPP/pull/129
See #114
Testing functions that call into the build handler is currently a bit fastidious as this handler produces a sequence of API calls. We should add a utility function to make...