Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 05093b5d authored by hhakim's avatar hhakim
Browse files

Fix issue #299 (LazyLinearOperator call with dtype).

[skip ci]
parent d5ac3582
Branches
Tags
No related merge requests found
...@@ -247,10 +247,10 @@ class LazyLinearOp(LinearOperator): ...@@ -247,10 +247,10 @@ class LazyLinearOp(LinearOperator):
l['H'] = None l['H'] = None
l['slice'] = None l['slice'] = None
lop = LazyLinearOp(lambdas, shape, dtype) lop = LazyLinearOp(lambdas, shape, dtype=dtype)
lopT = LazyLinearOp(lambdasT, (shape[1], shape[0]), dtype) lopT = LazyLinearOp(lambdasT, (shape[1], shape[0]), dtype=dtype)
lopH = LazyLinearOp(lambdasH, (shape[1], shape[0]), dtype) lopH = LazyLinearOp(lambdasH, (shape[1], shape[0]), dtype=dtype)
lopC = LazyLinearOp(lambdasC, shape, dtype) lopC = LazyLinearOp(lambdasC, shape, dtype=dtype)
lambdas['T'] = lambda: lopT lambdas['T'] = lambda: lopT
lambdas['H'] = lambda: lopH lambdas['H'] = lambda: lopH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment