Skip to content

Commit

Permalink
Use RAFT 23.12 (#703)
Browse files Browse the repository at this point in the history
* Use RAFT 23.12
* use cuda11.4 for building wheels
  • Loading branch information
benfred authored Nov 21, 2023
1 parent cb2a66d commit b33b809
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions ci/install_cuda.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo
yum install --setopt=obsoletes=0 -y \
cuda-nvcc-11-2 \
cuda-cudart-devel-11-2 \
libcurand-devel-11-2 \
libcublas-devel-11-2 \
cuda-nvprof-11-2 \
cuda-nvcc-11-4 \
cuda-cudart-devel-11-4 \
libcurand-devel-11-4 \
libcublas-devel-11-4 \
cuda-nvprof-11-4 \
ninja-build
ln -s cuda-11.2 /usr/local/cuda
ln -s cuda-11.4 /usr/local/cuda
6 changes: 3 additions & 3 deletions implicit/gpu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else()
add_cython_target(_cuda CXX)

# use rapids-cmake to install dependencies
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.08/RAPIDS.cmake
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.12/RAPIDS.cmake
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(rapids-cmake)
Expand Down Expand Up @@ -57,10 +57,10 @@ else()
# get raft
# note: we're using RAFT in header only mode right now - mainly to reduce binary
# size of the compiled wheels
rapids_cpm_find(raft 23.08
rapids_cpm_find(raft 23.12
CPM_ARGS
GIT_REPOSITORY https://github.com/rapidsai/raft.git
GIT_TAG branch-23.08
GIT_TAG branch-23.12
DOWNLOAD_ONLY YES
)
include_directories(${raft_SOURCE_DIR}/cpp/include)
Expand Down

0 comments on commit b33b809

Please sign in to comment.