We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e5345f commit 44d8c7dCopy full SHA for 44d8c7d
dynamax/utils/utils.py
@@ -199,7 +199,7 @@ def find_permutation(
199
return perm
200
201
202
-def psd_solve(A, b, diagonal_boost=1e-6):
+def psd_solve(A, b, diagonal_boost=1e-9):
203
"""A wrapper for coordinating the linalg solvers used in the library for psd matrices."""
204
A = symmetrize(A) + diagonal_boost * jnp.eye(A.shape[-1])
205
L, lower = cho_factor(A, lower=True)
0 commit comments