Skip to content

Commit

Permalink
Fix typo in dispatch_row_equal.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Aug 1, 2024
1 parent 9d0c57a commit 6cf3552
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/stream_compaction/distinct.cu
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace {
* @param func The input functor to invoke
*/
template <bool HasNested, typename Func>
rmm::device_uvector<cudf::size_type> dipatch_row_equal(
rmm::device_uvector<cudf::size_type> dispatch_row_equal(
null_equality compare_nulls,
nan_equality compare_nans,
bool has_nulls,
Expand Down Expand Up @@ -110,9 +110,9 @@ rmm::device_uvector<size_type> distinct_indices(table_view const& input,
};

if (cudf::detail::has_nested_columns(input)) {
return dipatch_row_equal<true>(nulls_equal, nans_equal, has_nulls, row_equal, helper_func);
return dispatch_row_equal<true>(nulls_equal, nans_equal, has_nulls, row_equal, helper_func);
} else {
return dipatch_row_equal<false>(nulls_equal, nans_equal, has_nulls, row_equal, helper_func);
return dispatch_row_equal<false>(nulls_equal, nans_equal, has_nulls, row_equal, helper_func);
}
}

Expand Down

0 comments on commit 6cf3552

Please sign in to comment.