Skip to content

Commit

Permalink
Reducing number of large neq tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jrenaud90 committed Dec 2, 2024
1 parent 0d16e0e commit f8087f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/D_PySolver_Tests/test_c_pysolve_large_Neq.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def cy_diffeq(dy, t, y):
dy[i] = -y[i]/2 + 2*math.sin(3*t)


@pytest.mark.parametrize('Neqs', (2**20, 2**21, 2**22))
@pytest.mark.parametrize('Neqs', (2**22,))
def test_pysolve_large_neqs(Neqs):
""" Tests CyRK's ability to simultaneously solve many copies of this system. """
y0 = np.full(Neqs, y_0, dtype=np.float64)
Expand Down

0 comments on commit f8087f6

Please sign in to comment.