| 818 | */ |
| 819 | |
| 820 | __device__ inline float GpuAtomicMin(float* ptr, float value) { |
| 821 | return detail::GpuAtomicCasHelper( |
| 822 | ptr, [value](float a) { return fminf(a, value); }); |
| 823 | } |
| 824 | |
| 825 | __device__ inline double GpuAtomicMin(double* ptr, double value) { |
| 826 | return detail::GpuAtomicCasHelper( |
no test coverage detected