Lower tolerace of eigvalsh for float32/complex64

PiperOrigin-RevId: 274723451
diff --git a/tensorflow/python/ops/linalg/linear_operator_test_util.py b/tensorflow/python/ops/linalg/linear_operator_test_util.py
index 5eeae3f..44a1dfd 100644
--- a/tensorflow/python/ops/linalg/linear_operator_test_util.py
+++ b/tensorflow/python/ops/linalg/linear_operator_test_util.py
@@ -434,8 +434,8 @@
       atol = self._atol[dtype]  # pylint: disable=protected-access
       rtol = self._rtol[dtype]  # pylint: disable=protected-access
       if dtype == dtypes.float32 or dtype == dtypes.complex64:
-        atol = 1e-5
-        rtol = 1e-5
+        atol = 1e-4
+        rtol = 1e-4
       self.assertAllClose(op_eigvals_v, mat_eigvals_v, atol=atol, rtol=rtol)
   return test_eigvalsh