Skip to content

Commit

Permalink
fix randomly fail
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdong committed Dec 7, 2024
1 parent 2741e91 commit ff6d50d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/include/raft/sparse/convert/detail/bitmap_to_csr.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ RAFT_KERNEL __launch_bounds__(bitmap_to_csr_tpb)
int l_bits = raft::detail::popc(l_bitmap);
int l_sum_32b = 0;
BlockScan(scan_storage).InclusiveSum(l_bits, l_sum_32b);
__syncthreads();
l_sum = l_sum_32b + g_sum - l_bits;

#pragma unroll
Expand Down

0 comments on commit ff6d50d

Please sign in to comment.