From 4e748e1fdae0600eecbdf25dfd4ece58930cb321 Mon Sep 17 00:00:00 2001 From: Benjamin Chetioui Date: Fri, 14 Jun 2024 23:16:46 -0700 Subject: [PATCH] Bump up tolerance for tests using `_testQdwh`. PiperOrigin-RevId: 643547107 --- tests/qdwh_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]