Skip to content

Commit 5187c2a

Browse files
committed
Minor fix change rtol to 1e-13
1 parent 3162fcc commit 5187c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_distributedarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,4 +191,4 @@ def test_distributed_norm(par):
191191
np.linalg.norm(par['x'], ord=1, axis=par['axis']), rtol=1e-14)
192192
assert_allclose(arr.norm(ord=np.inf, axis=par['axis']),
193193
np.linalg.norm(par['x'], ord=np.inf, axis=par['axis']), rtol=1e-14)
194-
assert_allclose(arr.norm(), np.linalg.norm(par['x'].flatten()), rtol=1e-14)
194+
assert_allclose(arr.norm(), np.linalg.norm(par['x'].flatten()), rtol=1e-13)

0 commit comments

Comments
 (0)