You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been labeled inactive-30d due to no recent activity in the past 30 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be labeled inactive-90d if there is no activity in the next 60 days.
BradReesWork
changed the title
[ENH] update cuGraph to use rmm's new cuda_stream_view
[ENH] update and refactor all cuGraph to use rmm's new cuda_stream_view
Jun 2, 2021
Describe the solution you'd like
RMM added cuda_stream_view (https://github.com/rapidsai/rmm/blob/branch-0.19/include/rmm/cuda_stream_view.hpp#L34)
This wraps a native CUDA stream with convenience functions, and we should switch to this new feature.
get_stream()
call on raft::handle_t should be replaced withget_stream_view()
and thrust execution policy
rmm::exec_policy(handle_ptr_->get_stream())->on(handle_ptr_->get_stream())
can now be
rmm::exec_policy(handle.get_stream_view())
for example.The text was updated successfully, but these errors were encountered: