Added 863 files from NVIDIA/cccl sparse checkout: - c2h/ (27 files): Catch2 test helpers — generators, validators, runner - nvbench_helper/ (10 files): Benchmark harness utilities - cmake/ (29 files): CMake presets and build helpers - cudax/ (794 files): Experimental CUDA extensions - AGENTS.md: NVIDIA's official AI agent instructions for CCCL - CMakePresets.json: Standardized build configurations - cccl-version.json: Version tracking Also added CCCL_ASSET_MAP.md mapping all 4295 CCCL files to competition value and PRD items. cccl_upstream now covers 100% of competition-critical assets: - 27 tuning headers (SM80/90/100 benchmark data) - 32 dispatch headers (algorithm implementations) - 60 Thrust examples (correctness verification) - 217 CUB Catch2 tests (regression matrix) - 153 CUB benchmarks (parameter space search) - 18 CUB examples (API verification) - 27 test helpers + benchmark harness - 794 cudax experimental extensions
90 lines
2.3 KiB
CMake
90 lines
2.3 KiB
CMake
cmake_minimum_required(VERSION 3.21)
|
|
|
|
project(nvbench_helper LANGUAGES CXX CUDA)
|
|
|
|
include(CMakeDependentOption)
|
|
|
|
cccl_get_cub()
|
|
cccl_get_cudatoolkit()
|
|
cccl_get_libcudacxx()
|
|
cccl_get_nvbench()
|
|
cccl_get_thrust()
|
|
|
|
add_library(cccl.nvbench_helper OBJECT nvbench_helper/nvbench_helper.cu)
|
|
cccl_configure_target(cccl.nvbench_helper)
|
|
target_link_libraries(
|
|
cccl.nvbench_helper
|
|
PUBLIC
|
|
libcudacxx::libcudacxx
|
|
CUB::CUB
|
|
# This Thrust target does not define any host/device system. Those are added later if needed:
|
|
Thrust::Thrust
|
|
nvbench::nvbench
|
|
PRIVATE #
|
|
cccl.compiler_interface
|
|
CUDA::curand
|
|
)
|
|
|
|
target_include_directories(
|
|
cccl.nvbench_helper
|
|
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/nvbench_helper"
|
|
)
|
|
|
|
# Old NVCC incorrectly infers the host device annotation of std::map::map() which calls a non-host device member
|
|
if (CUDAToolkit_VERSION VERSION_LESS "12.5.0")
|
|
target_compile_options(cccl.nvbench_helper PUBLIC -diag-suppress 20011)
|
|
endif()
|
|
|
|
if (CCCL_ENABLE_TILE)
|
|
target_compile_options(
|
|
cccl.nvbench_helper
|
|
PUBLIC "$<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>:--enable-tile>"
|
|
)
|
|
endif()
|
|
|
|
# Don't enable tests when pulled in as an internal dependency.
|
|
# Require CCCL_ENABLE_NVBENCH_HELPER to be explicitly enabled.
|
|
cmake_dependent_option(
|
|
nvbench_helper_ENABLE_TESTING
|
|
"Enable tests for nvbench_helper"
|
|
ON
|
|
CCCL_ENABLE_NVBENCH_HELPER
|
|
OFF
|
|
)
|
|
mark_as_advanced(nvbench_helper_ENABLE_TESTING)
|
|
|
|
if (nvbench_helper_ENABLE_TESTING)
|
|
cccl_get_catch2()
|
|
cccl_get_boost()
|
|
|
|
thrust_create_target(cccl.nvbench_helper.test.Thrust.cpp.cuda DEVICE CUDA)
|
|
thrust_create_target(cccl.nvbench_helper.test.Thrust.cpp.cpp DEVICE CPP)
|
|
|
|
function(add_nvbench_helper_test device_system)
|
|
set(nvbench_helper_test_target nvbench_helper.test.${device_system})
|
|
cccl_add_executable(
|
|
${nvbench_helper_test_target}
|
|
ADD_CTEST
|
|
NO_METATARGETS
|
|
SOURCES
|
|
test/gen_seed.cu
|
|
test/gen_range.cu
|
|
test/gen_entropy.cu
|
|
test/gen_uniform_distribution.cu
|
|
test/gen_power_law_distribution.cu
|
|
)
|
|
target_link_libraries(
|
|
${nvbench_helper_test_target}
|
|
PRIVATE
|
|
cccl.compiler_interface
|
|
cccl.nvbench_helper
|
|
cccl.nvbench_helper.test.Thrust.cpp.${device_system}
|
|
Catch2::Catch2WithMain
|
|
Boost::math
|
|
)
|
|
endfunction()
|
|
|
|
add_nvbench_helper_test(cpp)
|
|
add_nvbench_helper_test(cuda)
|
|
endif()
|