Skip to content

Commit

Permalink
fix sync call
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Sep 20, 2024
1 parent 6dc19ef commit 01500dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/text/minhash.cu
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ CUDF_KERNEL void minhash_kernel(cudf::column_device_view const d_strings,
auto begin = warp_hashes + (seed_idx * tile_size);
thrust::uninitialized_fill(thrust::seq, begin, begin + tile_size, init);
}
__syncwarp();
//__syncwarp();
__syncthreads();

auto const d_output = d_hashes + (str_idx * seeds.size());

Expand Down

0 comments on commit 01500dd

Please sign in to comment.