From b40fb3fb0ce8db3b96430b3c5f47410dc539f8f4 Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Mon, 6 Jun 2022 13:39:25 -0400 Subject: [PATCH] Testing "quick-fix" cublaslt linking option as workaround (still not sure if this is the problem). --- cpp/test/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cpp/test/CMakeLists.txt b/cpp/test/CMakeLists.txt index 43c6257966..018f5a06d4 100644 --- a/cpp/test/CMakeLists.txt +++ b/cpp/test/CMakeLists.txt @@ -155,6 +155,9 @@ target_compile_options(test_raft "$<$:${RAFT_CUDA_FLAGS}>" ) +target_link_options(CUDA-SGEMM PRIVATE "LINKER:--no-as-needed") +target_link_options(CUDA-SGEMM PRIVATE "LINKER:-lcublasLt") + target_include_directories(test_raft PUBLIC "$" )