Files
OpenCL-CTS/test_conformance/integer_ops/CMakeLists.txt
Ben Ashbaugh 58eb3d776d add tests for cl_khr_extended_bit_ops (#1232)
* very basic test infrastructure

* move test to integer_ops

* added bitfield_reverse test

* added test for bitfield insert

* add a separate file for bitfield_extract

* cleaned up implementation and all tests are passing

* rename helper file so it can be used by other tests

* remove temporary hacks

* fix formatting

* address code review comments

* remove duplicated code after rebase

* fix formatting

a few naming changes for consistency

more changes for consistency

* fix copyright dates

* remove unused variable
2022-12-13 09:46:42 -08:00

22 lines
522 B
CMake

set(MODULE_NAME INTEGER_OPS)
set(${MODULE_NAME}_SOURCES
main.cpp
test_int_basic_ops.cpp
test_integers.cpp
test_upsample.cpp
test_intmul24.cpp test_intmad24.cpp
test_sub_sat.cpp test_add_sat.cpp
test_abs.cpp test_absdiff.cpp
test_unary_ops.cpp
verification_and_generation_functions.cpp
test_popcount.cpp
test_integer_dot_product.cpp
test_extended_bit_ops_extract.cpp
test_extended_bit_ops_insert.cpp
test_extended_bit_ops_reverse.cpp
)
include(../CMakeCommon.txt)