Skip to content

Commit 71de03e

Browse files
committed
Use RAFT 24.12
We are seeing errors like `fatal error: raft/core/logger_macros.hpp: No such file or directory` This seems to be related to NVIDIA/raft#2530 . Workaround this by using the previous version of raft
1 parent 09fe084 commit 71de03e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

implicit/gpu/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ else()
1414
add_cython_target(_cuda CXX)
1515

1616
# use rapids-cmake to install dependencies
17-
set(rapids-cmake-version "26.02")
18-
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/refs/heads/release/26.02/RAPIDS.cmake
17+
set(rapids-cmake-version "24.12")
18+
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/refs/heads/release/25.12/RAPIDS.cmake
1919
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
2020
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)
2121
include(rapids-cmake)
@@ -34,10 +34,10 @@ else()
3434
# get raft
3535
# note: we're using RAFT in header only mode right now - mainly to reduce binary
3636
# size of the compiled wheels
37-
rapids_cpm_find(raft 26.02
37+
rapids_cpm_find(raft 24.12
3838
CPM_ARGS
3939
GIT_REPOSITORY https://github.com/rapidsai/raft.git
40-
GIT_TAG v26.02.00
40+
GIT_TAG v24.12.00
4141
DOWNLOAD_ONLY YES
4242
)
4343
include_directories(${raft_SOURCE_DIR}/cpp/include)

0 commit comments

Comments
 (0)