Skip to content

Commit

Permalink
Fix deterministic tan
Browse files Browse the repository at this point in the history
  • Loading branch information
burrbull committed Aug 1, 2022
1 parent b324dd7 commit a67039b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/f64x/u35_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ macro_rules! impl_math_f64_u35 {

ql = Mx::from_cast(g).select(ql, dql.roundi());
s = g.select(s, u);
let g = d.abs().lt(F64x::splat(1e+7));
let g = d.abs().lt(F64x::splat(1e+6));

if !g.all() {
let (ddidd, ddii) = rempi(d);
Expand Down

0 comments on commit a67039b

Please sign in to comment.