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.
2 parents 00d076d + fb60a7f commit 0532345Copy full SHA for 0532345
src/fastpow.jl
@@ -56,10 +56,10 @@ const EXP2FT = (Float32(0x1.6a09e667f3bcdp-1),
56
TBLSIZE = UInt32(1 << TBLBITS)
57
58
redux = Float32(0x1.8p23f) / TBLSIZE
59
- P1 = Float32(0x1.62e430p-1f)
60
- P2 = Float32(0x1.ebfbe0p-3f)
61
- P3 = Float32(0x1.c6b348p-5f)
62
- P4 = Float32(0x1.3b2c9cp-7f)
+ P1 = Float32(0x1.62e430p-1)
+ P2 = Float32(0x1.ebfbe0p-3)
+ P3 = Float32(0x1.c6b348p-5)
+ P4 = Float32(0x1.3b2c9cp-7)
63
64
# Reduce x, computing z, i0, and k.
65
t::Float32 = x + redux
0 commit comments