Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions rapids-cmake/cuda/set_architectures.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,12 @@ function(rapids_cuda_set_architectures mode)
elseif(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 12.9.0)
set(supported_archs "70-real" "75-real" "80-real" "86-real" "90a-real" "100f-real"
"120a-real" "120")
elseif(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 12.0.0)
else()
set(supported_archs "70-real" "75-real" "80-real" "86-real" "90a-real" "90-virtual")
if(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 12.8.0)
list(REMOVE_ITEM supported_archs "90-virtual")
list(APPEND supported_archs "100-real" "120a-real" "120-virtual")
endif()
else()
rapids_cmake_policy(DEPRECATED_IN 25.08 REMOVED_IN 25.12
MESSAGE "Support for CUDA versions below 12 has been deprecated")
set(supported_archs "70-real" "75-real" "80-real" "86-real")
if(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 11.8.0)
list(APPEND supported_archs "90a-real" "90-virtual")
endif()
endif()

# For the CUDA 12.X.0 series we want to silence warnings when compiling for arch 70 when
Expand Down