mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
fixes #2140 Adds testing for SPIR-V 1.5 features: * Adds a test for bitcasts between pointers and vectors of integers. Note, SPIR-V 1.5 only supports bitcasts to vectors of two 32-bit integers. Therefore, the SPIR-V 1.5 behavior will only be exercised on devices with 64-bit pointers. The test will run on devices with 32-bit pointers, but will instead bitcast to scalars. * Adds a test for OpGroupNonUniformBroadcast with a dynamic index. Note, this is not an exhaustive test, and only unsigned integer types are tested, to avoid duplicating testing for cl_khr_subgroup_ballot.
46 lines
1.1 KiB
CMake
46 lines
1.1 KiB
CMake
set(MODULE_NAME SPIRV_NEW)
|
|
|
|
set(${MODULE_NAME}_SOURCES
|
|
main.cpp
|
|
test_basic_versions.cpp
|
|
test_cl_khr_expect_assume.cpp
|
|
test_decorate.cpp
|
|
test_get_program_il.cpp
|
|
test_linkage.cpp
|
|
test_no_integer_wrap_decoration.cpp
|
|
test_op_atomic.cpp
|
|
test_op_branch_conditional.cpp
|
|
test_op_branch.cpp
|
|
test_op_composite_construct.cpp
|
|
test_op_constant.cpp
|
|
test_op_copy_object.cpp
|
|
test_op_fmath.cpp
|
|
test_op_function.cpp
|
|
test_op_lifetime.cpp
|
|
test_op_loop_merge.cpp
|
|
test_op_negate.cpp
|
|
test_op_opaque.cpp
|
|
test_op_phi.cpp
|
|
test_op_selection_merge.cpp
|
|
test_op_spec_constant.cpp
|
|
test_op_undef.cpp
|
|
test_op_vector_extract.cpp
|
|
test_op_vector_insert.cpp
|
|
test_op_vector_times_scalar.cpp
|
|
test_spirv_14.cpp
|
|
test_spirv_15.cpp
|
|
)
|
|
|
|
set(TEST_HARNESS_SOURCES
|
|
../../test_conformance/math_brute_force/reference_math.cpp
|
|
../../test_conformance/math_brute_force/utility.cpp
|
|
)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "(Apple)?Clang")
|
|
add_cxx_flag_if_supported(-Wno-narrowing)
|
|
endif()
|
|
|
|
set(${MODULE_NAME}_SOURCES ${SPIRV_NEW_SOURCES} ${TEST_HARNESS_SOURCES})
|
|
|
|
include(../CMakeCommon.txt)
|