diff --git a/rapids-cmake/cuda/init_architectures.cmake b/rapids-cmake/cuda/init_architectures.cmake index b860db53..53f17eae 100644 --- a/rapids-cmake/cuda/init_architectures.cmake +++ b/rapids-cmake/cuda/init_architectures.cmake @@ -84,9 +84,9 @@ function(rapids_cuda_init_architectures project_name) set(cuda_arch_mode "RAPIDS") endif() - # This needs to be run before enabling the CUDA language since RAPIDS supports magic - # values like `RAPIDS`, `ALL`, and `NATIVE` which if propagated cause CMake to fail to determine - # the CUDA compiler + # This needs to be run before enabling the CUDA language since RAPIDS supports magic values like + # `RAPIDS`, `ALL`, and `NATIVE` which if propagated cause CMake to fail to determine the CUDA + # compiler if(cuda_arch_mode STREQUAL "RAPIDS") set(CMAKE_CUDA_ARCHITECTURES OFF PARENT_SCOPE) set(load_file "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/detail/invoke_set_all_architectures.cmake")