Skip to content

Commit

Permalink
Update cpp/src/join/mixed_join_kernels_semi.cu
Browse files Browse the repository at this point in the history
Co-authored-by: Yunsong Wang <[email protected]>
  • Loading branch information
mhaseeb123 and PointKernel authored Sep 24, 2024
1 parent ba4e1e4 commit a2ddf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/join/mixed_join_kernels_semi.cu
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ CUDF_KERNEL void __launch_bounds__(block_size)
outer_row_index < outer_num_rows;
outer_row_index += cg_grid_stride) {
auto const result = set_ref_equality.contains(tile, outer_row_index);
if (tile.thread_rank() == 0) left_table_keep_mask[outer_row_index] = result;
if (tile.thread_rank() == 0) { left_table_keep_mask[outer_row_index] = result; }
}
}

Expand Down

0 comments on commit a2ddf7f

Please sign in to comment.