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 f86b4d6 commit b325f71Copy full SHA for b325f71
libm-test/src/precision.rs
@@ -20,7 +20,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {
20
// operations from builtins are always precise
21
Bn::Add | Bn::Sub | Bn::Mul | Bn::Div => 0,
22
// FIXME: we need a better powi implementation (though this is no worse than C)
23
- Bn::Powi if ctx.fn_ident == Id::Powif64 => 4000,
+ Bn::Powi if ctx.fn_ident == Id::Powif64 => 10_000,
24
Bn::Powi => 1000,
25
26
// Operations that require exact results. This list should correlate with what we
0 commit comments