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 d8aa81b commit ac8c865Copy full SHA for ac8c865
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 => 100,
+ Bn::Powi => 1000,
24
25
// Operations that require exact results. This list should correlate with what we
26
// have documented at <https://doc.rust-lang.org/std/primitive.f32.html>.
0 commit comments