Files
project_6/cccl_upstream/thrust/testing/CMakeLists.txt
EngineX CI 56fd68e7dd [INFRA] Import NVIDIA/CCCL upstream as optimization reference library
CCCL (CUDA C++ Core Libraries) provides:
- CUB: device/block/warp-level GPU primitives (reduce, scan, sort, topk)
- Thrust: high-level parallel algorithms (transform_reduce, sort, scan)
- libcudacxx: CUDA C++ standard library (atomics, barriers, memory)
- cudax: experimental features (memory resources, allocators)
- Tuning policies: per-SM hardware-specific algorithm parameters

Competition optimization vectors mapped to CCCL:
- Output TPS (83% weight): warp_reduce, block_reduce, device_topk
- Input TPS (14% weight): device_scan, block_load, prefetch
- Cache TPS (3% weight): prefix caching strategy patterns
- Memory (0.9 util): pooled/cached/buddy allocators

Source: https://github.com/NVIDIA/cccl (shallow clone, HEAD only)
License: Apache-2.0
2026-07-30 09:35:51 +00:00

169 lines
5.6 KiB
CMake

# Generate testing framework libraries:
add_subdirectory(unittest)
cccl_get_catch2()
# Some tests only support certain host.device configurations. Use this macro to
# declare allowed configurations. If not specified, all host.device config are
# used.
set(restricted_tests)
macro(thrust_declare_test_restrictions test_name)
list(APPEND restricted_tests ${test_name})
list(APPEND ${test_name}_host.device_allowed ${ARGN})
endmacro()
# In the TBB backend, reduce_by_key does not currently work with transform_output_iterator
# https://github.com/NVIDIA/thrust/issues/1811
thrust_declare_test_restrictions(transform_output_iterator_reduce_by_key CPP.CPP CPP.OMP CPP.CUDA)
function(thrust_is_catch2_test result_var test_src)
# If the test_src contains the substring "catch2_test_", `result_var` will be set to TRUE.
string(FIND "${test_src}" "catch2_test_" idx)
if (idx EQUAL -1)
set(${result_var} FALSE PARENT_SCOPE)
else()
set(${result_var} TRUE PARENT_SCOPE)
endif()
endfunction()
## thrust_add_test
#
# Add a test executable and register it with ctest.
#
# target_name_var: Variable name to overwrite with the name of the test
# target. Useful for post-processing target information per-backend.
# test_name: The name of the test minus "<config_prefix>.test." For example,
# testing/vector.cu will be "vector", and testing/cuda/copy.cu will be
# "cuda.copy".
# test_src: The source file that implements the test.
# thrust_target: The reference thrust target with configuration information.
#
function(thrust_add_test target_name_var test_name test_src thrust_target)
thrust_get_target_property(config_host ${thrust_target} HOST)
thrust_get_target_property(config_device ${thrust_target} DEVICE)
thrust_get_target_property(config_prefix ${thrust_target} PREFIX)
thrust_is_catch2_test(is_catch2_test "${test_src}")
# Wrap the .cu file in .cpp for non-CUDA backends
if ("CUDA" STREQUAL "${config_device}")
set(real_test_src "${test_src}")
else()
thrust_wrap_cu_in_cpp(real_test_src "${test_src}" ${thrust_target})
endif()
# The actual name of the test's target:
set(test_target ${config_prefix}.test.${test_name})
set(${target_name_var} ${test_target} PARENT_SCOPE)
# Related target names:
set(config_framework_target ${config_prefix}.test.framework)
cccl_add_executable(${test_target} SOURCES "${real_test_src}" ADD_CTEST)
if (is_catch2_test)
target_link_libraries(
${test_target}
PRIVATE #
${thrust_target}
Catch2::Catch2WithMain
)
else()
target_link_libraries(
${test_target}
PRIVATE #
${thrust_target}
${config_framework_target}
)
endif()
target_include_directories(
${test_target}
PRIVATE "${Thrust_SOURCE_DIR}/testing"
)
target_compile_definitions(
${test_target}
PRIVATE
$<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>:THRUST_TEST_DEVICE_SIDE>
CCCL_ENABLE_ASSERTIONS
)
# Run OMP/TBB tests in serial. Multiple OMP processes will massively
# oversubscribe the machine with GCC's OMP, and we want to test these with
# the full CPU available to each unit test.
set(config_systems ${config_host} ${config_device})
if (("OMP" IN_LIST config_systems) OR ("TBB" IN_LIST config_systems))
set_tests_properties(${test_target} PROPERTIES RUN_SERIAL ON)
endif()
# In some cases cudafe++ doesn't implement certain builtins that are used in <immintrin.h> which causes the
# compilation to fail. In tbb_nvcc_preinclude.h, we forward declare those functions, so cudafe++ has no problems.
get_target_property(lang ${test_target} LANGUAGE)
if (
"TBB" IN_LIST config_systems
AND "${lang}" STREQUAL "CUDA"
AND "${CMAKE_CUDA_COMPILER_ID}" STREQUAL "NVIDIA"
AND NOT MSVC
)
target_compile_options(
${test_target}
PRIVATE "-include" "${Thrust_SOURCE_DIR}/testing/tbb_nvcc_preinclude.h"
)
endif()
# Check for per-test script. Script will be included in the current scope
# to allow custom property modifications.
get_filename_component(test_cmake_script "${test_src}" NAME_WLE)
set(test_cmake_script "${CMAKE_CURRENT_LIST_DIR}/${test_cmake_script}.cmake")
# Use a glob so we can detect if this changes:
file(
GLOB test_cmake_script
RELATIVE "${CMAKE_CURRENT_LIST_DIR}"
CONFIGURE_DEPENDS
"${test_cmake_script}"
)
if (test_cmake_script) # Will be non-empty only if the script exists
include("${test_cmake_script}")
endif()
endfunction()
file(
GLOB test_srcs
RELATIVE "${CMAKE_CURRENT_LIST_DIR}"
CONFIGURE_DEPENDS
*.cu
*.cpp
)
# Add common tests to all configs:
foreach (thrust_target IN LISTS THRUST_TARGETS)
thrust_get_target_property(config_host ${thrust_target} HOST)
thrust_get_target_property(config_device ${thrust_target} DEVICE)
thrust_get_target_property(config_prefix ${thrust_target} PREFIX)
foreach (test_src IN LISTS test_srcs)
get_filename_component(test_name "${test_src}" NAME_WLE)
string(REGEX REPLACE "^catch2_test_" "" test_name "${test_name}")
# Is this test restricted to only certain host/device combinations?
if (${test_name} IN_LIST restricted_tests)
# Is the current host/device combination supported?
# gersemi: off
if (NOT "${config_host}.${config_device}" IN_LIST ${test_name}_host.device_allowed)
# gersemi: on
continue()
endif()
endif()
thrust_add_test(test_target ${test_name} "${test_src}" ${thrust_target})
if ("CUDA" STREQUAL "${config_device}")
thrust_configure_cuda_target(${test_target} RDC ${THRUST_FORCE_RDC})
endif()
endforeach()
endforeach()
# Add specialized tests:
add_subdirectory(cmake)
add_subdirectory(cpp)
add_subdirectory(cuda)
add_subdirectory(omp)