Skip to content

Commit

Permalink
Update precision based on failures from exhaustive tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Dec 26, 2024
1 parent 1827d56 commit e5d157d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/libm-test/src/precision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {
// Overrides that apply to either basis
(_, Id::J0 | Id::J0f | Id::J1 | Id::J1f) => {
// Results seem very target-dependent
if cfg!(target_arch = "x86_64") { 4000 } else { 800_000 }
if cfg!(target_arch = "x86_64") { 20_000 } else { 800_000 }
}
(_, Id::Jn | Id::Jnf) => 1000,

Expand Down

0 comments on commit e5d157d

Please sign in to comment.