forked from KhronosGroup/SYCL-CTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
240 lines (196 loc) · 7.3 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
if(SYCL_CTS_TEST_FILTER)
message(FATAL_ERROR "SYCL_CTS_TEST_FILTER is no longer supported. Use SYCL_CTS_EXCLUDE_TEST_CATEGORIES instead.")
endif()
set(SYCL_CTS_EXCLUDE_TEST_CATEGORIES "" CACHE FILEPATH "Optional filter specifying test categories to be excluded from build.")
set(exclude_categories "")
if(SYCL_CTS_EXCLUDE_TEST_CATEGORIES)
if(NOT EXISTS "${SYCL_CTS_EXCLUDE_TEST_CATEGORIES}" OR IS_DIRECTORY "${SYCL_CTS_EXCLUDE_TEST_CATEGORIES}")
message(FATAL_ERROR "Invalid filter file '${SYCL_CTS_EXCLUDE_TEST_CATEGORIES}'.")
endif()
message(STATUS "Using test category filter '${SYCL_CTS_EXCLUDE_TEST_CATEGORIES}'.")
file(STRINGS "${SYCL_CTS_EXCLUDE_TEST_CATEGORIES}" exclude_categories)
endif()
add_subdirectory("common")
function(get_std_type OUT_LIST)
set(STD_TYPE_LIST "")
list(APPEND STD_TYPE_LIST
"bool"
"char"
"int"
"float"
"double"
"sycl::half"
)
if(SYCL_CTS_ENABLE_FULL_CONFORMANCE)
list(APPEND STD_TYPE_LIST
"signed char"
"unsigned char"
"short"
"unsigned short"
"unsigned int"
"long"
"unsigned long"
"long long"
"unsigned long long"
)
endif()
set(${OUT_LIST} ${${OUT_LIST}} ${STD_TYPE_LIST} PARENT_SCOPE)
endfunction()
function(get_no_vec_alias_type OUT_LIST)
set(NO_VEC_ALIAS_LIST "")
list(APPEND NO_VEC_ALIAS_LIST sycl::byte)
set(${OUT_LIST} ${${OUT_LIST}} ${NO_VEC_ALIAS_LIST} PARENT_SCOPE)
endfunction()
function(get_fixed_width_type OUT_LIST)
set(FIXED_WIDTH_LIST "")
list(APPEND FIXED_WIDTH_LIST
std::int8_t
std::int32_t
)
if(SYCL_CTS_ENABLE_FULL_CONFORMANCE)
list(APPEND FIXED_WIDTH_LIST
std::uint8_t
std::int16_t
std::uint16_t
std::uint32_t
std::int64_t
std::uint64_t
)
endif()
set(${OUT_LIST} ${${OUT_LIST}} ${FIXED_WIDTH_LIST} PARENT_SCOPE)
endfunction()
macro(half_double_filter list)
if(NOT SYCL_CTS_ENABLE_DOUBLE_TESTS)
list(REMOVE_ITEM ${list} double)
endif()
if(NOT SYCL_CTS_ENABLE_HALF_TESTS)
list(REMOVE_ITEM ${list} sycl::half)
endif()
endmacro()
# Create a target to trigger the generation of CTS test
add_custom_target(generate_test_sources)
# Test generation routine
function(generate_cts_test)
cmake_parse_arguments(
GEN_TEST
""
"TESTS;GENERATOR;OUTPUT;INPUT"
"EXTRA_ARGS;DEPENDS"
${ARGN}
)
get_filename_component(test_dir ${CMAKE_CURRENT_SOURCE_DIR} NAME)
if(${test_dir} IN_LIST exclude_categories)
return()
endif()
message(STATUS "Setup test generation rules for: " ${GEN_TEST_OUTPUT})
set(GEN_TEST_FILE_NAME ${GEN_TEST_OUTPUT})
set(GEN_TEST_OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${GEN_TEST_OUTPUT})
set(GEN_TEST_INPUT ${CMAKE_CURRENT_SOURCE_DIR}/${GEN_TEST_INPUT})
set(extra_deps "")
foreach(filename ${GEN_TEST_DEPENDS})
list(APPEND extra_deps ${CMAKE_CURRENT_SOURCE_DIR}/${filename})
endforeach()
# Add the file to the out test list
set(${GEN_TEST_TESTS} ${${GEN_TEST_TESTS}} ${GEN_TEST_OUTPUT} PARENT_SCOPE)
get_filename_component(test_dir ${CMAKE_CURRENT_SOURCE_DIR} NAME)
get_filename_component(test_name ${GEN_TEST_OUTPUT} NAME_WE)
add_custom_command(OUTPUT ${GEN_TEST_OUTPUT}
COMMAND
${PYTHON_EXECUTABLE}
${GEN_TEST_GENERATOR}
${GEN_TEST_INPUT}
-o ${GEN_TEST_OUTPUT}
${GEN_TEST_EXTRA_ARGS}
DEPENDS
${GEN_TEST_GENERATOR}
${GEN_TEST_INPUT}
${extra_deps}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
COMMENT "Generating test ${GEN_TEST_OUTPUT}..."
)
add_custom_target(${GEN_TEST_FILE_NAME}_gen DEPENDS ${GEN_TEST_OUTPUT})
add_dependencies(generate_test_sources ${GEN_TEST_FILE_NAME}_gen)
endfunction()
# create a target to group all tests together into one test executable
add_executable(test_all)
# create a target to encapsulate all test categories, excluding test_all. This
# is intended for conformance testing to avoid redundant testing and excessive
# resource use from building and running test_all.
add_custom_target(test_conformance)
# create test executable targets for each test project using the build_sycl function
function(add_cts_test_helper)
get_filename_component(test_dir ${CMAKE_CURRENT_SOURCE_DIR} NAME)
set(test_exe_name test_${ARGV0})
set(test_cases_list ${ARGV1})
if(NOT ${test_dir} IN_LIST exclude_categories)
message(STATUS "Adding test: " ${test_exe_name})
else()
message(STATUS "Skipping excluded test: " ${test_exe_name})
return()
endif()
if(NOT SYCL_CTS_ENABLE_HALF_TESTS)
list(FILTER test_cases_list EXCLUDE REGEX .*_fp16\\.cpp$)
endif()
if(NOT SYCL_CTS_ENABLE_DOUBLE_TESTS)
list(FILTER test_cases_list EXCLUDE REGEX .*_fp64\\.cpp$)
endif()
add_sycl_executable(NAME ${test_exe_name}
OBJECT_LIBRARY ${test_exe_name}_objects
TESTS ${test_cases_list})
target_include_directories(${test_exe_name} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(${test_exe_name} PUBLIC ${SYCL_CTS_DETAIL_OPTION_COMPILE_DEFINITIONS})
set(info_dump_dir "${CMAKE_BINARY_DIR}/Testing")
add_test(NAME ${test_exe_name}
COMMAND ${test_exe_name}
--device ${SYCL_CTS_CTEST_DEVICE}
--info-dump "${info_dump_dir}/${test_exe_name}.info")
target_link_libraries(${test_exe_name} PRIVATE CTS::util CTS::main_function oclmath)
target_link_libraries(${test_exe_name} PRIVATE Catch2::Catch2 Threads::Threads)
set_property(TARGET ${test_exe_name}
PROPERTY FOLDER "Tests/${test_exe_name}")
set_property(TARGET ${test_exe_name}_objects
PROPERTY FOLDER "Tests/${test_exe_name}")
target_sources(test_all PRIVATE $<TARGET_OBJECTS:${test_exe_name}_objects>)
add_dependencies(test_conformance ${test_exe_name})
endfunction()
# Create one *.exe-file from all of the provided *.cpp-files
function(add_cts_test)
# To make check that any .cpp files are passed
# List created because, direct check on "${ARGN}" gives false-positive result
set(tests_list "${ARGN}")
get_filename_component(test_dir ${CMAKE_CURRENT_SOURCE_DIR} NAME)
if (tests_list)
set(test_exe_name ${test_dir})
set(test_cases_list "${ARGN}")
add_cts_test_helper(${test_exe_name} "${test_cases_list}")
else()
if(${test_dir} IN_LIST exclude_categories)
message(STATUS "Skipping excluded test: " test_${test_dir})
endif()
endif()
endfunction()
# Create a separate *.exe-file from each of the provided *.cpp-files
function(add_independent_cts_tests)
set(tests_list "${ARGN}")
foreach(ind_test IN LISTS tests_list)
if(EXISTS "${ind_test}")
get_filename_component(cpp_name "${ind_test}" NAME_WE)
set(test_exe_name "${cpp_name}")
set(test_cases_list "${ind_test}")
add_cts_test_helper(${test_exe_name} "${test_cases_list}")
else()
message(FATAL_ERROR "No file named ${ind_test}")
endif()
endforeach()
endfunction()
file(GLOB test_category_dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *)
list(REMOVE_ITEM test_category_dirs "common")
foreach(dir ${test_category_dirs})
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${dir}/CMakeLists.txt")
add_subdirectory(${dir})
endif()
endforeach()
target_link_libraries(test_all PRIVATE CTS::util CTS::main_function oclmath)
target_link_libraries(test_all PRIVATE Catch2::Catch2 Threads::Threads)
add_sycl_to_target(TARGET test_all)