Skip to content

Commit

Permalink
Removed sym_pos argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahel13 committed Apr 17, 2024
1 parent 9f59865 commit 4a1f59d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
/.pytest_cache/
*/__pycache__/
*/.ipynb_checkpoints/
*.pyc
*.pyc
parsmooth.egg-info/
4 changes: 2 additions & 2 deletions parsmooth/parallel/_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def standard_filtering_operator(elem1, elem2):
IpCJ = I_dim + jnp.dot(C1, J2)
IpJC = I_dim + jnp.dot(J2, C1)

AIpCJ_inv = jlinalg.solve(IpCJ.T, A2.T, sym_pos=False).T
AIpJC_inv = jlinalg.solve(IpJC.T, A1, sym_pos=False).T
AIpCJ_inv = jlinalg.solve(IpCJ.T, A2.T).T
AIpJC_inv = jlinalg.solve(IpJC.T, A1).T

A = jnp.dot(AIpCJ_inv, A1)
b = jnp.dot(AIpCJ_inv, b1 + jnp.dot(C1, eta2)) + b2
Expand Down

0 comments on commit 4a1f59d

Please sign in to comment.