Skip to content

Commit 667a89f

Browse files
committed
refactor: use pinv_solver
1 parent 45ee570 commit 667a89f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mrinufft/extras/smaps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def low_frequency(
183183
n_coils=k_space.shape[-2],
184184
squeeze_dims=True,
185185
)
186-
Smaps = smaps_adj_op.cg(k_space)
186+
Smaps = smaps_adj_op.pinv_solver(k_space)
187187
SOS = np.linalg.norm(Smaps, axis=0)
188188
if isinstance(mask, np.ndarray):
189189
Smaps = Smaps * mask

0 commit comments

Comments
 (0)