Skip to content

Commit

Permalink
fixes spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
elstehle committed Jan 7, 2025
1 parent f89b53d commit a5dc0db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cub/test/catch2_segmented_sort_helper.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public:

void verify_sorted(const c2h::device_vector<key_t>& out_keys) const
{
// Verfiy keys are sorted next to each other
// Verify keys are sorted next to each other
auto count = thrust::unique_count(c2h::device_policy, out_keys.cbegin(), out_keys.cend(), thrust::equal_to<int>());
REQUIRE(count <= max_histo_size);

Expand Down Expand Up @@ -215,7 +215,7 @@ public:
// The segments' end-offsets are provided by the segments' begin-offset iterator
auto offsets_plus_1 = offsets + 1;

// Verfiy keys are sorted next to each other
// Verify keys are sorted next to each other
const auto count = static_cast<std::size_t>(
thrust::unique_count(c2h::device_policy, out_keys.cbegin(), out_keys.cend(), thrust::equal_to<int>()));
REQUIRE(count <= sequence_length * num_segments);
Expand Down

0 comments on commit a5dc0db

Please sign in to comment.