mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
* Add tests for entrypoint cl_khr_suggested_local_work_size Tests added within test_conformance/workgroups. The tests cover several shapes (num dimensions) and sizes of global work size, kernels using local memory (dynamic and static) and present/non-present global work offset. Signed-off-by: Kallia Chronaki <kallia.chronaki@arm.com> * Fix in comparison for error checking Signed-off-by: Kallia Chronaki <kallia.chronaki@arm.com> * 'test_wg_suggested_local_work_size' fixes * Refactoring of 'test_wg_suggested_local_work_size' Modifications to reduce code duplication and minimize build time
21 lines
495 B
CMake
21 lines
495 B
CMake
set(MODULE_NAME WORKGROUPS)
|
|
|
|
set(${MODULE_NAME}_SOURCES
|
|
main.cpp
|
|
test_wg_all.cpp
|
|
test_wg_any.cpp
|
|
test_wg_broadcast.cpp
|
|
test_wg_reduce.cpp
|
|
test_wg_reduce_max.cpp
|
|
test_wg_reduce_min.cpp
|
|
test_wg_scan_exclusive_add.cpp
|
|
test_wg_scan_exclusive_min.cpp
|
|
test_wg_scan_exclusive_max.cpp
|
|
test_wg_scan_inclusive_add.cpp
|
|
test_wg_scan_inclusive_min.cpp
|
|
test_wg_scan_inclusive_max.cpp
|
|
test_wg_suggested_local_work_size.cpp
|
|
)
|
|
|
|
include(../CMakeCommon.txt)
|