diff --git a/tests/qdwh_test.py b/tests/qdwh_test.py index 4fdf62e88..705c96f00 100644 --- a/tests/qdwh_test.py +++ b/tests/qdwh_test.py @@ -68,7 +68,7 @@ class QdwhTest(jtu.JaxTestCase): """Computes the polar decomposition and tests its basic properties.""" eps = jnp.finfo(a.dtype).eps u, h, iters, conv = qdwh.qdwh(a, dynamic_shape=dynamic_shape) - tol = 11 * eps + tol = 13 * eps if dynamic_shape is not None: m, n = dynamic_shape a = a[:m, :n]