Files
project_6/cccl_upstream/libcudacxx/cmake/GetHostTriple.cmake
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

36 lines
1.0 KiB
CMake

# Returns the host triple.
# Invokes config.guess
function(get_host_triple var)
if (MSVC)
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
set(value "x86_64-pc-windows-msvc")
else()
set(value "i686-pc-windows-msvc")
endif()
elseif (MINGW AND NOT MSYS)
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
set(value "x86_64-w64-windows-gnu")
else()
set(value "i686-pc-windows-gnu")
endif()
else(MSVC)
if (CMAKE_HOST_SYSTEM_NAME STREQUAL Windows AND NOT MSYS)
message(WARNING "unable to determine host target triple")
else()
set(config_guess ${LLVM_PATH}/cmake/config.guess)
execute_process(
COMMAND sh ${config_guess}
RESULT_VARIABLE TT_RV
OUTPUT_VARIABLE TT_OUT
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if (NOT TT_RV EQUAL 0)
message(FATAL_ERROR "Failed to execute ${config_guess}")
endif(NOT TT_RV EQUAL 0)
set(value ${TT_OUT})
endif()
endif(MSVC)
set(${var} ${value} PARENT_SCOPE)
endfunction(get_host_triple var)