From 0e5464d80b955dcd21eda30fc4b47be6e9cf121e Mon Sep 17 00:00:00 2001 From: mrava87 Date: Thu, 24 Oct 2024 08:24:03 +0300 Subject: [PATCH] test: increase rtol in remaining test_linearop --- tests/test_linearop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_linearop.py b/tests/test_linearop.py index cffa5bd..a037cdd 100644 --- a/tests/test_linearop.py +++ b/tests/test_linearop.py @@ -351,4 +351,4 @@ def test_adj_mpilinop(par): VStack = pylops.VStack(ops=[(i + 1) * Sop for i in range(size)]) FullOp = VStack @ Fop y_np = FullOp.H @ x_global - assert_allclose(y, y_np.flatten(), rtol=1e-12) + assert_allclose(y, y_np.flatten(), rtol=1e-9)