Skip to content

Commit

Permalink
Fix deprecated status (#1692)
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko authored May 3, 2024
1 parent a791829 commit db61c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cub/test/catch2_segmented_sort_helper.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ CUB_RUNTIME_FUNCTION cudaError_t call_cub_segmented_sort_api(
const int* offset_begin_it = d_begin_offsets;
thrust::device_ptr<const int> offset_end_it = thrust::device_pointer_cast(d_end_offsets);

cudaError_t status = cudaErrorNotYetImplemented;
cudaError_t status = cudaErrorInvalidValue;

if (stable_sort)
{
Expand Down

0 comments on commit db61c65

Please sign in to comment.