Skip to content

Commit b325f71

Browse files
committed
increase precision
1 parent f86b4d6 commit b325f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libm-test/src/precision.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {
2020
// operations from builtins are always precise
2121
Bn::Add | Bn::Sub | Bn::Mul | Bn::Div => 0,
2222
// FIXME: we need a better powi implementation (though this is no worse than C)
23-
Bn::Powi if ctx.fn_ident == Id::Powif64 => 4000,
23+
Bn::Powi if ctx.fn_ident == Id::Powif64 => 10_000,
2424
Bn::Powi => 1000,
2525

2626
// Operations that require exact results. This list should correlate with what we

0 commit comments

Comments
 (0)