We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f64d46f commit 1507468Copy full SHA for 1507468
cpp/cmake/modules/ConfigureCUDA.cmake
@@ -29,6 +29,12 @@ if(CMAKE_COMPILER_IS_GNUCXX)
29
if(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 11.2.0)
30
list(APPEND RAFT_CUDA_FLAGS -Werror=all-warnings)
31
endif()
32
+
33
+ # Allow invalid CUDA kernels in the short term
34
+ if(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER_EQUAL 12.8.0)
35
+ list(APPEND RAFT_CUDA_FLAGS -static-global-template-stub=false )
36
+ endif()
37
38
39
40
if(CUDA_LOG_COMPILE_TIME)
0 commit comments