Skip to content

Commit

Permalink
Fix typo in dispatch_row_equal. (rapidsai#16473)
Browse files Browse the repository at this point in the history
This PR fixes a small typo in the C++ code.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Yunsong Wang (https://github.com/PointKernel)
  - David Wendt (https://github.com/davidwendt)

URL: rapidsai#16473
  • Loading branch information
bdice authored Aug 2, 2024
1 parent cc19d8a commit e0d1ac1
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 e0d1ac1

Please sign in to comment.