Files
OpenCL-CTS/test_conformance/workgroups/CMakeLists.txt
kalchr01 cc0b46e457 Add tests for entrypoint cl_khr_suggested_local_work_size (#1264)
* 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
2021-08-09 11:20:40 +01:00

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)