Skip to content

Commit

Permalink
tighten tolerances (test passes)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bossart authored and ChrisRackauckas committed Sep 27, 2024
1 parent 9382e4b commit 7fc48c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fastpow.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end
Ty in (Const, Duplicated)
x = 3.0
y = 2.0
test_forward(fastpow, RT, (x, Tx), (y, Ty), atol=0.1, rtol=0.1)
test_forward(fastpow, RT, (x, Tx), (y, Ty), atol=0.005, rtol=0.005)
end
end

Expand All @@ -37,6 +37,6 @@ end
Ty in (Active,)
x = 2.0
y = 3.0
test_reverse(fastpow, RT, (x, Tx), (y, Ty))
test_reverse(fastpow, RT, (x, Tx), (y, Ty), atol=0.001, rtol=0.001)
end
end

0 comments on commit 7fc48c1

Please sign in to comment.