Skip to content

Commit

Permalink
Loosen tolerances
Browse files Browse the repository at this point in the history
This test failed on Intel macOS with OpenBLAS.
  • Loading branch information
nilsvu committed Aug 25, 2024
1 parent 7223630 commit 5dc55af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ SPECTRE_TEST_CASE("Unit.Evolution.Subcell.Fd.Reconstruction",

test_reconstruct_fd<6, 3, Spectral::Basis::Legendre,
Spectral::Quadrature::GaussLobatto>(
{1.0e-14, 1.0e-14, 3.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method);
{1.0e-14, 1.0e-12, 3.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method);
test_reconstruct_fd<6, 3, Spectral::Basis::Legendre,
Spectral::Quadrature::Gauss>(
{1.0e-14, 1.0e-14, 1.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ void test_partial_derivatives_3d(const Mesh<3>& mesh) {
Variables<
db::wrap_tags_in<Tags::deriv, GradientTags, tmpl::size_t<3>, Frame::Grid>>
expected_du(number_of_grid_points);
Approx local_approx = Approx::custom().epsilon(1e-10).scale(1.0);
Approx local_approx = Approx::custom().epsilon(1e-9).scale(1.0);
for (size_t a = 0; a < mesh.extents(0) / 2; ++a) {
for (size_t b = 0; b < mesh.extents(1) / 2; ++b) {
for (size_t c = 0; c < mesh.extents(2) / 2; ++c) {
Expand Down

0 comments on commit 5dc55af

Please sign in to comment.