Skip to content

Commit 44d8c7d

Browse files
committed
reduce diag boost
1 parent 4e5345f commit 44d8c7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamax/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def find_permutation(
199199
return perm
200200

201201

202-
def psd_solve(A, b, diagonal_boost=1e-6):
202+
def psd_solve(A, b, diagonal_boost=1e-9):
203203
"""A wrapper for coordinating the linalg solvers used in the library for psd matrices."""
204204
A = symmetrize(A) + diagonal_boost * jnp.eye(A.shape[-1])
205205
L, lower = cho_factor(A, lower=True)

0 commit comments

Comments
 (0)