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
No related branches found
No related tags found
No related merge requests found
......@@ -247,10 +247,10 @@ class LazyLinearOp(LinearOperator):
l['H'] = None
l['slice'] = None
lop = LazyLinearOp(lambdas, shape, dtype)
lopT = LazyLinearOp(lambdasT, (shape[1], shape[0]), dtype)
lopH = LazyLinearOp(lambdasH, (shape[1], shape[0]), dtype)
lopC = LazyLinearOp(lambdasC, shape, dtype)
lop = LazyLinearOp(lambdas, shape, dtype=dtype)
lopT = LazyLinearOp(lambdasT, (shape[1], shape[0]), dtype=dtype)
lopH = LazyLinearOp(lambdasH, (shape[1], shape[0]), dtype=dtype)
lopC = LazyLinearOp(lambdasC, shape, dtype=dtype)
lambdas['T'] = lambda: lopT
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