| 849 | |
| 850 | #if __CUDA_ARCH__ < 320 |
| 851 | __device__ inline tensorflow::uint64 GpuAtomicMin(tensorflow::uint64* ptr, |
| 852 | tensorflow::uint64 value) { |
| 853 | return detail::GpuAtomicCasHelper( |
| 854 | ptr, [value](tensorflow::uint64 a) { return min(a, value); }); |
| 855 | } |
| 856 | #endif |
| 857 | CREATE_CUDA_DEVICE_FUNCTION_ALIAS(GpuAtomicMin, CudaAtomicMin); |
| 858 |
nothing calls this directly
no test coverage detected