Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Raft header #3162

Merged
merged 5 commits into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/cmake/thirdparty/get_raft.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ endfunction()
# To use a different RAFT locally, set the CMake variable
# CPM_raft_SOURCE=/path/to/local/raft
find_and_configure_raft(VERSION ${CUGRAPH_MIN_VERSION_raft}
FORK rapidsai
PINNED_TAG branch-${CUGRAPH_BRANCH_VERSION_raft}
FORK lowener
PINNED_TAG 23.02-rm-depr
lowener marked this conversation as resolved.
Show resolved Hide resolved

# When PINNED_TAG above doesn't match cugraph,
# force local raft clone in build directory
Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/pylibcugraph/raft/common/handle.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ from rmm._lib.cuda_stream_pool cimport cuda_stream_pool
from libcpp.memory cimport shared_ptr
from libcpp.memory cimport unique_ptr

cdef extern from "raft/handle.hpp" namespace "raft" nogil:
cdef extern from "raft/core/handle.hpp" namespace "raft" nogil:
cdef cppclass handle_t:
handle_t() except +
handle_t(cuda_stream_view stream_view) except +
Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/pylibcugraph/raft/common/handle.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cdef class Handle:
"""
Handle is a lightweight python wrapper around the corresponding C++ class
of handle_t exposed by RAFT's C++ interface. Refer to the header file
raft/handle.hpp for interface level details of this struct
raft/core/handle.hpp for interface level details of this struct

Examples
--------
Expand Down