Skip to content

Commit

Permalink
Removing interruptible from basic handle sync. (#1224)
Browse files Browse the repository at this point in the history
* Removing interruptible from basic handle sync.

* Adding todo and referencing github issue
  • Loading branch information
cjnolet authored Feb 2, 2023
1 parent aa14ed4 commit cd40591
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cpp/include/raft/core/resource/cuda_stream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ inline void set_cuda_stream(resources const& res, rmm::cuda_stream_view stream_v
*/
inline void sync_stream(const resources& res, rmm::cuda_stream_view stream)
{
interruptible::synchronize(stream);
// TODO: Fix interruptible segfault:
// https://github.com/rapidsai/raft/issues/1225
// interruptible::synchronize(stream);
RAFT_CUDA_TRY(cudaStreamSynchronize(stream));
}

/**
Expand Down

0 comments on commit cd40591

Please sign in to comment.