@@ -148,11 +148,11 @@ FetchContent_Declare(
148
148
GIT_TAG mdspan-0.6.0)
149
149
FetchContent_MakeAvailable(mdspan)
150
150
151
- add_custom_target (mhp -all -tests)
152
- add_custom_target (shp -all -tests)
153
- add_custom_target (all -tests DEPENDS mhp -all -tests shp -all -tests)
151
+ add_custom_target (mp -all -tests)
152
+ add_custom_target (sp -all -tests)
153
+ add_custom_target (all -tests DEPENDS mp -all -tests sp -all -tests)
154
154
155
- function (add_mhp_ctest_impl )
155
+ function (add_mp_ctest_impl )
156
156
set (options OFFLOAD GDB SYCL DRLOGS TESTLABEL)
157
157
set (oneValueArgs NAME TEST_NAME NPROC TIMEOUT )
158
158
set (multiValueArgs TARGS) # Test ARGumentS
@@ -234,25 +234,25 @@ function(add_mhp_ctest_impl)
234
234
endif ()
235
235
236
236
if (AMC_TESTLABEL)
237
- set_property (TEST ${AMC_TEST_NAME} PROPERTY LABELS TESTLABEL MHP )
237
+ set_property (TEST ${AMC_TEST_NAME} PROPERTY LABELS TESTLABEL MP )
238
238
endif ()
239
- add_dependencies (mhp -all -tests ${AMC_NAME} )
239
+ add_dependencies (mp -all -tests ${AMC_NAME} )
240
240
endfunction ()
241
241
242
- function (add_mhp_auxiliary_ctests )
243
- add_mhp_ctest_impl (${ARGN} GDB)
244
- add_mhp_ctest_impl (${ARGN} GDB DRLOGS)
245
- add_mhp_ctest_impl (${ARGN} DRLOGS)
242
+ function (add_mp_auxiliary_ctests )
243
+ add_mp_ctest_impl (${ARGN} GDB)
244
+ add_mp_ctest_impl (${ARGN} GDB DRLOGS)
245
+ add_mp_ctest_impl (${ARGN} DRLOGS)
246
246
endfunction ()
247
247
248
- function (add_mhp_ctest )
249
- add_mhp_ctest_impl (${ARGN} TESTLABEL)
250
- add_mhp_auxiliary_ctests (${ARGN} )
248
+ function (add_mp_ctest )
249
+ add_mp_ctest_impl (${ARGN} TESTLABEL)
250
+ add_mp_auxiliary_ctests (${ARGN} )
251
251
endfunction ()
252
252
253
- function (add_mhp_disabled_ctest )
254
- add_mhp_ctest_impl (${ARGN} )
255
- add_mhp_auxiliary_ctests (${ARGN} )
253
+ function (add_mp_disabled_ctest )
254
+ add_mp_ctest_impl (${ARGN} )
255
+ add_mp_auxiliary_ctests (${ARGN} )
256
256
endfunction ()
257
257
258
258
if (ENABLE_ISHMEM)
@@ -363,14 +363,14 @@ if(ENABLE_ISHMEM)
363
363
364
364
endif ()
365
365
366
- function (add_shp_disabled_ctest test_name name )
366
+ function (add_sp_disabled_ctest test_name name )
367
367
add_test (NAME ${test_name} COMMAND ./${name} ${ARGN} )
368
- add_dependencies (shp -all -tests ${name} )
368
+ add_dependencies (sp -all -tests ${name} )
369
369
endfunction ()
370
370
371
- function (add_shp_ctest test_name name )
372
- add_shp_disabled_ctest (${test_name} ${name} ${ARGN} )
373
- set_property (TEST ${test_name} PROPERTY LABELS TESTLABEL SHP )
371
+ function (add_sp_ctest test_name name )
372
+ add_sp_disabled_ctest (${test_name} ${name} ${ARGN} )
373
+ set_property (TEST ${test_name} PROPERTY LABELS TESTLABEL SP )
374
374
endfunction ()
375
375
376
376
install (DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX} )
@@ -411,20 +411,20 @@ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
411
411
endif ()
412
412
endif ()
413
413
414
- add_subdirectory (test /gtest/mhp )
414
+ add_subdirectory (test /gtest/mp )
415
415
416
416
if (ENABLE_SYCL)
417
417
# disables rng::detail::box_compress::coalesce which causes rng::box to use
418
418
# global non-const variable, which can not be used in SYCL kernels
419
419
add_compile_definitions (RANGES_WORKAROUND_MSVC_249830)
420
420
421
- add_subdirectory (examples/shp )
422
- add_subdirectory (test /gtest/shp )
421
+ add_subdirectory (examples/sp )
422
+ add_subdirectory (test /gtest/sp )
423
423
endif ()
424
424
425
425
add_subdirectory (examples/serial)
426
426
add_subdirectory (test /gtest/serial)
427
- add_subdirectory (examples/mhp )
427
+ add_subdirectory (examples/mp )
428
428
add_subdirectory (benchmarks/gbench)
429
429
430
430
# Requires clang, icpx/llvm nightly do not support the tools
0 commit comments