You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We would like CCCL to add cuda::std::minmax, similar to how cuda::std::min and cuda::std::max correspond to std::min and std::max. Originally posted by @bdice in rapidsai/cudf#17647 (comment)
We already have that implemented in <cuda/std/__algorithm/minmax.h> However, it is not officially available because we do not want to ship incomplete algorithm support
Is this a duplicate?
Area
libcu++
Is your feature request related to a problem? Please describe.
We would like CCCL to add
cuda::std::minmax
, similar to howcuda::std::min
andcuda::std::max
correspond tostd::min
andstd::max
.Originally posted by @bdice in rapidsai/cudf#17647 (comment)
https://godbolt.org/z/YcGEG886Y
Describe the solution you'd like
One straightforward approach is to combine the outputs of
cuda::std::min
andcuda::std::max
.Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: