Skip to content

Commit fc16f5d

Browse files
committed
minor: fix rtol
1 parent 19468ee commit fc16f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_matrixmult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def test_MPIMatrixMult(N, K, M, dtype_str):
149149
assert_allclose(
150150
y1.squeeze(),
151151
y1_loc.squeeze(),
152-
rtol=1e1 * np.finfo(np.dtype(dtype)).resolution,
152+
rtol=np.finfo(np.dtype(dtype)).resolution,
153153
err_msg=f"Rank {rank}: Forward verification failed."
154154
)
155155

0 commit comments

Comments
 (0)