Skip to content

Commit 5a4721f

Browse files
Tune atol for TestSvd
1 parent dd74a36 commit 5a4721f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def check_decomposition(
919919
reconstructed = inp.dot(dp_u, inp.dot(dpnp_diag_s, dp_vt))
920920
# TODO: use assert dpnp.allclose() inside check_decomposition()
921921
# when it will support complex dtypes
922-
assert_allclose(dp_a, reconstructed, rtol=tol, atol=tol)
922+
assert_allclose(dp_a, reconstructed, rtol=tol, atol=1e-4)
923923

924924
assert_allclose(dp_s, np_s, rtol=tol, atol=1e-03)
925925

0 commit comments

Comments
 (0)