Skip to content

Commit

Permalink
Add missing qualifier for cuda namespace (#2940)
Browse files Browse the repository at this point in the history
Fixes: #2939
  • Loading branch information
bernhardmgruber authored Nov 23, 2024
1 parent 83d180f commit 537b050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cub/cub/device/dispatch/dispatch_histogram.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ struct dispatch_histogram
privatized_decode_op, privatized_decode_op + NUM_ACTIVE_CHANNELS, privatized_decode_op_wrapper.begin());
::cuda::std::copy(output_decode_op, output_decode_op + NUM_ACTIVE_CHANNELS, output_decode_op_wrapper.begin());

auto minus_one = cuda::proclaim_return_type<int>([](int levels) {
auto minus_one = ::cuda::proclaim_return_type<int>([](int levels) {
return levels - 1;
});
::cuda::std::transform(
Expand Down

0 comments on commit 537b050

Please sign in to comment.