From 24f4b991fd1dd36f0be9cdf6f2e611dba5cd50e8 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Thu, 3 Oct 2024 10:16:11 -0700 Subject: [PATCH] Remove cuvs-cagra-search from cuvs_static link Seeing build errors in the cuml wheels, and the only difference afaict was adding the cuvs-cagra-search to link to the static library. Removing this since cuml is the only consumer of the static library this release and doesn't use cagra (will revisit in 24.12) --- cpp/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 6f5178251..a5028aa3a 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -530,7 +530,7 @@ if(NOT BUILD_CPU_ONLY) target_link_libraries( cuvs_static PUBLIC rmm::rmm raft::raft ${CUVS_CTK_MATH_DEPENDENCIES} - PRIVATE nvidia::cutlass::cutlass $ cuvs-cagra-search + PRIVATE nvidia::cutlass::cutlass $ ) endif() @@ -666,7 +666,7 @@ include(GNUInstallDirs) include(CPack) install( - TARGETS cuvs cuvs_static cuvs-cagra-search + TARGETS cuvs cuvs_static DESTINATION ${lib_dir} COMPONENT cuvs EXPORT cuvs-exports