Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Nov 7, 2024
1 parent 0a23180 commit c910df7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/src/join/distinct_hash_join.cu
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ distinct_hash_join<HasNested>::inner_join(rmm::cuda_stream_view stream,
thrust::make_transform_output_iterator(found_indices->begin(), output_fn{});

// TODO conditional find for nulls once `cuco::static_set::find_if` is added
// If `idx` is within the range `[0, probe_table_num_rows)` and `found_indices[idx]` is not equal
// to `JoinNoneValue`, then `idx` has a match in the hash set.
this->_hash_table.find_async(iter, iter + probe_table_num_rows, found_begin, stream.value());

auto const tuple_iter = cudf::detail::make_counting_transform_iterator(
Expand Down

0 comments on commit c910df7

Please sign in to comment.