Skip to content

Commit

Permalink
mpi: drop basic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebisbas committed Nov 14, 2024
1 parent 0db6352 commit efc25ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ def test_trivial_eq_2d(self, mode):
assert np.all(f.data_ro_domain[0, :-1, -1:] == side)
assert np.all(f.data_ro_domain[0, -1:, :-1] == side)

@pytest.mark.parallel(mode=[(8, 'basic'), (8, 'basic2'), (8, 'diag'), (8, 'overlap'),
@pytest.mark.parallel(mode=[(8, 'basic2'), (8, 'diag'), (8, 'overlap'),
(8, 'overlap2'), (8, 'diag2'), (8, 'full')])
def test_trivial_eq_3d(self, mode):
grid = Grid(shape=(8, 8, 8))
Expand Down Expand Up @@ -2718,8 +2718,8 @@ def run_adjoint_F(self, nd):
assert np.isclose((term1 - term2)/term1, 0., rtol=1.e-10)

@pytest.mark.parametrize('nd', [1, 2, 3])
@pytest.mark.parallel(mode=[(4, 'basic'), (4, 'basic2'), (4, 'diag'),
(4, 'overlap'), (4, 'overlap2'), (4, 'full')])
@pytest.mark.parallel(mode=[(4, 'basic2'), (4, 'diag'), (4, 'overlap'),
(4, 'overlap2'), (4, 'full')])
def test_adjoint_F(self, nd):
self.run_adjoint_F(nd)

Expand Down

0 comments on commit efc25ae

Please sign in to comment.