Skip to content

Commit

Permalink
Apply suggestion from codde review
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 16, 2024
1 parent 1ba2bad commit 7b640d6
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 @@ -59,7 +59,7 @@ CUDF_KERNEL void __launch_bounds__(block_size)
&intermediate_storage[tile.meta_group_rank() * device_expression_data.num_intermediates];

cudf::size_type const outer_num_rows = left_table.num_rows();
cudf::size_type const outer_row_index = (threadIdx.x + blockIdx.x * block_size) / cg_size;
auto const outer_row_index = cudf::detail::grid_1d::global_thread_id<block_size>() / cg_size;

auto evaluator = cudf::ast::detail::expression_evaluator<has_nulls>(
left_table, right_table, device_expression_data);
Expand Down

0 comments on commit 7b640d6

Please sign in to comment.