Skip to content

Commit

Permalink
Update example code fetching rapids-cmake to use CUVS instead of RAFT.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Nov 25, 2024
1 parent eb72420 commit 5d49e7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/cmake/thirdparty/fetch_rapids.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# Use this variable to update RAPIDS and RAFT versions
set(RAPIDS_VERSION "25.02")

if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/RAFT_RAPIDS.cmake)
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/CUVS_RAPIDS.cmake)
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-${RAPIDS_VERSION}/RAPIDS.cmake
${CMAKE_CURRENT_BINARY_DIR}/RAFT_RAPIDS.cmake)
${CMAKE_CURRENT_BINARY_DIR}/CUVS_RAPIDS.cmake)
endif()
include(${CMAKE_CURRENT_BINARY_DIR}/RAFT_RAPIDS.cmake)
include(${CMAKE_CURRENT_BINARY_DIR}/CUVS_RAPIDS.cmake)

0 comments on commit 5d49e7c

Please sign in to comment.