Skip to content

Commit

Permalink
Fix bug in pytree flattening of LinearOperatorLowRankUpdate in the JA…
Browse files Browse the repository at this point in the history
…X backend.

PiperOrigin-RevId: 563623848
  • Loading branch information
emilyfertig authored and tensorflower-gardener committed Sep 8, 2023
1 parent adbcc1d commit 0fc3b0c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def register_pytrees(env):
'LinearOperatorScaledIdentity': ('multiplier',),
'LinearOperatorInversion': ('operator',),
'LinearOperatorKronecker': ('operators',),
'LinearOperatorLowRankUpdate': ('base_operator', 'diag_update'),
'LinearOperatorLowRankUpdate': (
'base_operator', 'diag_update', 'u', 'v'),
'LinearOperatorLowerTriangular': ('tril',),
'LinearOperatorPermutation': ('perm',),
'LinearOperatorToeplitz': ('col', 'row'),
Expand Down

0 comments on commit 0fc3b0c

Please sign in to comment.