Skip to content

Commit ac8c865

Browse files
committed
update powi precision again
1 parent d8aa81b commit ac8c865

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 => 100,
23+
Bn::Powi => 1000,
2424

2525
// Operations that require exact results. This list should correlate with what we
2626
// have documented at <https://doc.rust-lang.org/std/primitive.f32.html>.

0 commit comments

Comments
 (0)