Skip to content

Commit

Permalink
Revert rapidsai#1224
Browse files Browse the repository at this point in the history
  • Loading branch information
achirkin committed Feb 3, 2023
1 parent 456e8e2 commit ddd5a61
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions cpp/include/raft/core/resource/cuda_stream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,7 @@ 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)
{
// TODO: Fix interruptible segfault:
// https://github.com/rapidsai/raft/issues/1225
// interruptible::synchronize(stream);
RAFT_CUDA_TRY(cudaStreamSynchronize(stream));
interruptible::synchronize(stream);
}

/**
Expand All @@ -106,4 +103,4 @@ inline void sync_stream(const resources& res) { sync_stream(res, get_cuda_stream
* @}
*/

} // namespace raft::resource
} // namespace raft::resource

0 comments on commit ddd5a61

Please sign in to comment.