Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0cee041e authored by hhakim's avatar hhakim
Browse files

Update pyfaust LazyLinearOp: use .T.conj() instead of .H for larger...

Update pyfaust LazyLinearOp: use .T.conj() instead of .H for larger compatibility (fix for scipy svds).
parent 36c9af01
Branches
Tags
No related merge requests found
......@@ -360,7 +360,7 @@ class LazyLinearOp(LinearOperator):
Returns the LazyLinearOp for self^H @ v, where self^H is the conjugate transpose of A.
"""
# LinearOperator need.
return self.H @ op
return self.T.conj() @ op
def _matmat(self, op):
"""
......@@ -378,7 +378,7 @@ class LazyLinearOp(LinearOperator):
Returns the LazyLinearOp for self^H @ v, where self^H is the conjugate transpose of A.
"""
# LinearOperator need.
return self.H @ op
return self.T.conj() @ op
def __imatmul__(self, op):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment