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 6846256 commit 83071beCopy full SHA for 83071be
test/logabsgamma.jl
@@ -145,7 +145,9 @@ x = 8.000007629394531
145
# This is overkill, but should reveal any toying around with this
146
# sensitive region.
147
r = 8.0:1e-9:prevfloat(x)
148
-@test all(x -> ulp(x) < 1.5, r)
+# Threshold of 1.5 can be met on everything except the combination of Julia v1.3, macOS-x64
149
+# It would be preferable to reduce to 1.5 if/when the above combination is amenable.
150
+@test all(x -> ulp(x) < 2.0, r)
151
152
# first f32 which does not fall into x < 8.0 branch is:
153
x = 8.000001f0
0 commit comments