Kévin Petit
Kévin Petit
See https://github.com/KhronosGroup/OpenCL-Docs/issues/612
See https://github.com/KhronosGroup/OpenCL-Docs/pull/1117 A few ideas: - Check that custom devices are included in the list reported when using `CL_DEVICE_TYPE_ALL` - Check that `CL_DEVICE_TYPE_DEFAULT` does return the custom device when it's...
Missing tests in most of the suites: - [x] bruteforce - [x] conversions - [ ] relationals - ... and probably others
Change-Id: Ib27b60fb043e47227f519f34e04316d04f47b55d
The specification currently states >`clReleaseCommandQueue` performs an implicit flush to issue any previously queued OpenCL commands in command_queue. A few implementers observed in the 2024/09/03 teleconference that this leads to...
Essentially require `param_value_size` be 0 when `param_value` is `NULL`. See #1216 and discussion in the 2024/08/06 teleconference.
See https://github.com/KhronosGroup/OpenCL-Docs/issues/1248 for background. We should add a test that: - Creates two command queues - Enqueues work in command queue A - Enqueues work in command queue B that...
This enables many useful newer C++ features. C++17 is already required by many components of the Khronos ecosystem.
Support for optimally-tiled images and tiling inference in general is implementation-defined. It should not be relied upon in the CTS. Also build the code base as C++17 for std::optional. Many...