Skip to content

Commit

Permalink
Remove unused cython code referencing RAFT APIs that are no longer pr…
Browse files Browse the repository at this point in the history
…esent (#2125)

Removed unused cython code referencing RAFT APIs that are no longer present. Tested locally by doing a build with the latest RAFT.

Authors:
  - Rick Ratzel (https://github.com/rlratzel)

Approvers:
  - Jordan Jacobelli (https://github.com/Ethyling)
  - Brad Rees (https://github.com/BradReesWork)

URL: #2125
  • Loading branch information
rlratzel authored Mar 21, 2022
1 parent 787e9c7 commit 85385dc
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions python/pylibcugraph/pylibcugraph/raft/common/handle.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,12 @@ 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/mr/device/allocator.hpp" \
namespace "raft::mr::device" nogil:
cdef cppclass allocator:
pass

cdef extern from "raft/handle.hpp" namespace "raft" nogil:
cdef cppclass handle_t:
handle_t() except +
handle_t(cuda_stream_view stream_view) except +
handle_t(cuda_stream_view stream_view,
shared_ptr[cuda_stream_pool] stream_pool) except +
void set_device_allocator(shared_ptr[allocator] a) except +
shared_ptr[allocator] get_device_allocator() except +
cuda_stream_view get_stream() except +
void sync_stream() except +

Expand Down

0 comments on commit 85385dc

Please sign in to comment.