Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in dispatch_row_equal. #16473

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading