Skip to content

Commit

Permalink
Merge branch 'bug-cuda122-cusparse-bug' of github.com:cjnolet/raft in…
Browse files Browse the repository at this point in the history
…to bug-cuda122-cusparse-bug
  • Loading branch information
cjnolet committed Feb 12, 2024
2 parents 3a8e048 + 87813ae commit 4c93e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/raft/sparse/linalg/spmm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void spmm(raft::resources const& handle,
detail::spmm(handle, trans_x, trans_y, is_row_major, alpha, descr_x, descr_y, beta, descr_z);

// WARNING: Do not remove the following copy unless you can, with certainty, say that
// the underlying cuSPARSE issue affecting CUA 12.2+ has been resolved.
// the underlying cuSPARSE issue affecting CUDA 12.2+ has been resolved.
raft::copy(
z.data_handle(), z_tmp.data_handle(), z_tmp.size(), raft::resource::get_cuda_stream(handle));
RAFT_CUSPARSE_TRY_NO_THROW(cusparseDestroySpMat(descr_x));
Expand Down

0 comments on commit 4c93e41

Please sign in to comment.