We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6958978 commit f79d4ccCopy full SHA for f79d4cc
src/kernels/miopen_limits.hpp
@@ -46,6 +46,10 @@ class numeric_limits<float>
46
static constexpr __device__ float max() noexcept { return 0x1.FFFFFEp+127f; }
47
48
static constexpr __device__ float min() noexcept { return 0x1p-126f; }
49
+
50
+#if HIP_PACKAGE_VERSION_FLAT >= 6001024024ULL
51
+ static constexpr __device__ float lowest() noexcept { return -0x1.fffffep+127; }
52
+#endif
53
};
54
55
template <>
0 commit comments