| 842 | #endif |
| 843 | |
| 844 | __device__ inline Eigen::half GpuAtomicMin(Eigen::half* ptr, |
| 845 | Eigen::half value) { |
| 846 | return detail::GpuAtomicCasHelper( |
| 847 | ptr, [value](Eigen::half a) { return min(a, value); }); |
| 848 | } |
| 849 | |
| 850 | #if __CUDA_ARCH__ < 320 |
| 851 | __device__ inline tensorflow::uint64 GpuAtomicMin(tensorflow::uint64* ptr, |
nothing calls this directly
no test coverage detected