Skip to content

Commit 78a4c78

Browse files
Adjust tolerance for test_lu_solve
1 parent 4c9afa9 commit 78a4c78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2182,7 +2182,7 @@ def test_lu_solve(self, shape, rhs_cols, order, dtype):
21822182

21832183
# check A @ x = b
21842184
Ax = a_dp @ x
2185-
assert dpnp.allclose(Ax, b_dp, rtol=1e-6, atol=1e-6)
2185+
assert dpnp.allclose(Ax, b_dp, atol=1e-5)
21862186

21872187
@pytest.mark.parametrize("trans", [0, 1, 2])
21882188
@pytest.mark.parametrize("dtype", get_float_complex_dtypes())

0 commit comments

Comments
 (0)