Skip to content

Commit

Permalink
soften tolerances for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickersing committed Apr 25, 2024
1 parent 6fc27e2 commit 592a91a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/test_structured_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ isdir(outdir) && rm(outdir, recursive = true)
4.4849667259339357e-14,
1.9999999999999993,
],
tspan=(0.0, 0.25))
tspan=(0.0, 0.25),
atol = 1e-12)
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down
2 changes: 1 addition & 1 deletion test/test_tree_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ isdir(outdir) && rm(outdir, recursive = true)
],
tspan=(0.0, 0.25),
# Soften the tolerance as test results vary between different CPUs
atol=1000 * eps())
atol=2000 * eps())
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down

0 comments on commit 592a91a

Please sign in to comment.