Skip to content

Commit

Permalink
Add minor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Oct 7, 2024
1 parent a5dcc82 commit 79f07dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/reductions/histogram.cu
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ compute_row_frequencies(table_view const& input,
using nan_equal_comparator =
cudf::experimental::row::equality::nan_equal_physical_equality_comparator;
auto const value_comp = nan_equal_comparator{};
auto const key_equal = row_comp.equal_to<false>(has_nulls, null_equality::EQUAL, value_comp);
// Hard set the tparam `has_nested_columns` = false for now as we don't yet support nested columns
auto const key_equal = row_comp.equal_to<false>(has_nulls, null_equality::EQUAL, value_comp);

using row_hash =
cudf::experimental::row::hash::device_row_hasher<cudf::hashing::detail::default_hash,
Expand Down

0 comments on commit 79f07dd

Please sign in to comment.