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
177 lines
5.2 KiB
CMake
177 lines
5.2 KiB
CMake
# Check all source files for various issues that can be detected using pattern
|
|
# matching.
|
|
#
|
|
# This is run as a ctest test named `thrust.test.cmake.check_source_files`, or
|
|
# manually with:
|
|
# cmake -D "Thrust_SOURCE_DIR=<thrust project root>" -P check_source_files.cmake
|
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
function(count_substrings input search_regex output_var)
|
|
string(REGEX MATCHALL "${search_regex}" matches "${input}")
|
|
list(LENGTH matches num_matches)
|
|
set(${output_var} ${num_matches} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
set(found_errors 0)
|
|
file(
|
|
GLOB_RECURSE thrust_srcs
|
|
RELATIVE "${Thrust_SOURCE_DIR}"
|
|
"${Thrust_SOURCE_DIR}/thrust/*.h"
|
|
"${Thrust_SOURCE_DIR}/thrust/*.inl"
|
|
)
|
|
|
|
################################################################################
|
|
# Namespace checks.
|
|
# Check all files in thrust to make sure that they use
|
|
# THRUST_NAMESPACE_BEGIN/END instead of bare `namespace thrust {}` declarations.
|
|
set(
|
|
namespace_exclusions
|
|
# This defines the macros and must have bare namespace declarations:
|
|
thrust/detail/config/namespace.h
|
|
)
|
|
|
|
set(bare_ns_regex "namespace[ \n\r\t]+thrust[ \n\r\t]*\\{")
|
|
|
|
# Validation check for the above regex:
|
|
count_substrings([=[
|
|
namespace thrust{
|
|
namespace thrust {
|
|
namespace thrust {
|
|
namespace thrust {
|
|
namespace thrust
|
|
{
|
|
namespace
|
|
thrust
|
|
{
|
|
]=]
|
|
${bare_ns_regex} valid_count
|
|
)
|
|
if (NOT valid_count EQUAL 6)
|
|
message(
|
|
FATAL_ERROR
|
|
"Validation of bare namespace regex failed: "
|
|
"Matched ${valid_count} times, expected 6."
|
|
)
|
|
endif()
|
|
|
|
################################################################################
|
|
# stdpar header checks.
|
|
# Check all files in Thrust to make sure that they aren't including <algorithm>
|
|
# or <memory>, both of which will cause circular dependencies in nvc++'s
|
|
# stdpar library.
|
|
#
|
|
# The headers following headers should be used instead:
|
|
# <algorithm> -> <cuda/std/__host_stdlib/algorithm>
|
|
# <memory> -> <cuda/std/__host_stdlib/memory>
|
|
# <numeric> -> <cuda/std/__host_stdlib/numeric>
|
|
#
|
|
set(
|
|
stdpar_header_exclusions
|
|
# Placeholder -- none yet.
|
|
)
|
|
|
|
set(algorithm_regex "#[ \t]*include[ \t]+<algorithm>")
|
|
set(memory_regex "#[ \t]*include[ \t]+<memory>")
|
|
set(numeric_regex "#[ \t]*include[ \t]+<numeric>")
|
|
|
|
# Validation check for the above regex pattern:
|
|
count_substrings([=[
|
|
#include <algorithm>
|
|
# include <algorithm>
|
|
#include <algorithm>
|
|
# include <algorithm>
|
|
# include <algorithm> // ...
|
|
]=]
|
|
${algorithm_regex} valid_count
|
|
)
|
|
if (NOT valid_count EQUAL 5)
|
|
message(
|
|
FATAL_ERROR
|
|
"Validation of stdpar header regex failed: "
|
|
"Matched ${valid_count} times, expected 5."
|
|
)
|
|
endif()
|
|
|
|
################################################################################
|
|
# Read source files:
|
|
foreach (src ${thrust_srcs})
|
|
file(READ "${Thrust_SOURCE_DIR}/${src}" src_contents)
|
|
|
|
if (NOT ${src} IN_LIST namespace_exclusions)
|
|
count_substrings("${src_contents}" "${bare_ns_regex}" bare_ns_count)
|
|
count_substrings("${src_contents}" THRUST_NS_PREFIX prefix_count)
|
|
count_substrings("${src_contents}" THRUST_NS_POSTFIX postfix_count)
|
|
count_substrings("${src_contents}" THRUST_NAMESPACE_BEGIN begin_count)
|
|
count_substrings("${src_contents}" THRUST_NAMESPACE_END end_count)
|
|
count_substrings("${src_contents}" "#include <thrust/detail/config.h>" header_count
|
|
)
|
|
|
|
if (NOT bare_ns_count EQUAL 0)
|
|
message(
|
|
"'${src}' contains 'namespace thrust {...}'. Replace with THRUST_NAMESPACE macros."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (NOT prefix_count EQUAL 0)
|
|
message(
|
|
"'${src}' contains 'THRUST_NS_PREFIX'. Replace with THRUST_NAMESPACE macros."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (NOT postfix_count EQUAL 0)
|
|
message(
|
|
"'${src}' contains 'THRUST_NS_POSTFIX'. Replace with THRUST_NAMESPACE macros."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (NOT begin_count EQUAL end_count)
|
|
message("'${src}' namespace macros are unbalanced:")
|
|
message(" - THRUST_NAMESPACE_BEGIN occurs ${begin_count} times.")
|
|
message(" - THRUST_NAMESPACE_END occurs ${end_count} times.")
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (begin_count GREATER 0 AND header_count EQUAL 0)
|
|
message(
|
|
"'${src}' uses Thrust namespace macros, but does not (directly) `#include <thrust/detail/config.h>`."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT ${src} IN_LIST stdpar_header_exclusions)
|
|
count_substrings("${src_contents}" "${algorithm_regex}" algorithm_count)
|
|
count_substrings("${src_contents}" "${memory_regex}" memory_count)
|
|
count_substrings("${src_contents}" "${numeric_regex}" numeric_count)
|
|
|
|
if (NOT algorithm_count EQUAL 0)
|
|
message(
|
|
"'${src}' includes the <algorithm> header. Replace with <cuda/std/__host_stdlib/algorithm>."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (NOT memory_count EQUAL 0)
|
|
message(
|
|
"'${src}' includes the <memory> header. Replace with <cuda/std/__host_stdlib/memory>."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
|
|
if (NOT numeric_count EQUAL 0)
|
|
message(
|
|
"'${src}' includes the <numeric> header. Replace with <cuda/std/__host_stdlib/numeric>."
|
|
)
|
|
set(found_errors 1)
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
|
|
if (NOT found_errors EQUAL 0)
|
|
message(FATAL_ERROR "Errors detected.")
|
|
endif()
|