Skip to content

Commit

Permalink
Merge remote-tracking branch 'rapidsai/branch-23.02' into fix-interru…
Browse files Browse the repository at this point in the history
…ptible-destruction
  • Loading branch information
achirkin committed Feb 3, 2023
2 parents 863ead0 + cd40591 commit 456e8e2
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 456e8e2

Please sign in to comment.