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
…#493)

Small update to CMake example code to use cuVS instead of RAFT.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Micka (https://github.com/lowener)

URL: #493
  • Loading branch information
bdice authored Nov 26, 2024
1 parent 089a80f commit aba3fa7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/cmake/thirdparty/fetch_rapids.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
# or implied. See the License for the specific language governing permissions and limitations under
# the License.

# Use this variable to update RAPIDS and RAFT versions
# Use this variable to update RAPIDS and cuVS 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 aba3fa7

Please sign in to comment.