@@ -28,9 +28,7 @@ function _similar_S(A::AbstractBlockSparseMatrix, s_axis)
2828end
2929
3030function MatrixAlgebraKit. initialize_output (
31- :: typeof (svd_compact!),
32- A:: AbstractBlockSparseMatrix ,
33- alg:: BlockPermutedDiagonalAlgorithm ,
31+ :: typeof (svd_compact!), A:: AbstractBlockSparseMatrix , alg:: BlockPermutedDiagonalAlgorithm
3432)
3533 bm, bn = blocksize (A)
3634 bmn = min (bm, bn)
@@ -81,9 +79,7 @@ function MatrixAlgebraKit.initialize_output(
8179end
8280
8381function MatrixAlgebraKit. initialize_output (
84- :: typeof (svd_full!),
85- A:: AbstractBlockSparseMatrix ,
86- alg:: BlockPermutedDiagonalAlgorithm ,
82+ :: typeof (svd_full!), A:: AbstractBlockSparseMatrix , alg:: BlockPermutedDiagonalAlgorithm
8783)
8884 bm, bn = blocksize (A)
8985
@@ -172,9 +168,7 @@ function MatrixAlgebraKit.check_input(
172168end
173169
174170function MatrixAlgebraKit. svd_compact! (
175- A:: AbstractBlockSparseMatrix ,
176- USVᴴ,
177- alg:: BlockPermutedDiagonalAlgorithm ,
171+ A:: AbstractBlockSparseMatrix , USVᴴ, alg:: BlockPermutedDiagonalAlgorithm
178172)
179173 MatrixAlgebraKit. check_input (svd_compact!, A, USVᴴ)
180174 U, S, Vt = USVᴴ
@@ -205,9 +199,7 @@ function MatrixAlgebraKit.svd_compact!(
205199end
206200
207201function MatrixAlgebraKit. svd_full! (
208- A:: AbstractBlockSparseMatrix ,
209- USVᴴ,
210- alg:: BlockPermutedDiagonalAlgorithm ,
202+ A:: AbstractBlockSparseMatrix , USVᴴ, alg:: BlockPermutedDiagonalAlgorithm
211203)
212204 MatrixAlgebraKit. check_input (svd_full!, A, USVᴴ)
213205 U, S, Vt = USVᴴ
0 commit comments