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 5ab9771 commit c3bbd8cCopy full SHA for c3bbd8c
libm-test/src/precision.rs
@@ -20,6 +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,
24
Bn::Powi => 1000,
25
26
// Operations that require exact results. This list should correlate with what we
0 commit comments