Skip to content

Commit 98e99f4

Browse files
github-actions[bot]CompatHelper Juliamtfishman
authored
CompatHelper: bump compat for MatrixAlgebraKit to 0.6, (keep existing compat) (#77)
Co-authored-by: CompatHelper Julia <[email protected]> Co-authored-by: mtfishman <[email protected]>
1 parent 3114c76 commit 98e99f4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GradedArrays"
22
uuid = "bc96ca6e-b7c8-4bb6-888e-c93f838762c2"
3+
version = "0.5.3"
34
authors = ["ITensor developers <[email protected]> and contributors"]
4-
version = "0.5.2"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -33,7 +33,7 @@ Compat = "4.16"
3333
FillArrays = "1.13"
3434
HalfIntegers = "1.6"
3535
LinearAlgebra = "1.10"
36-
MatrixAlgebraKit = "0.2, 0.3, 0.4, 0.5"
36+
MatrixAlgebraKit = "0.6"
3737
Random = "1.10"
3838
SUNRepresentations = "0.3"
3939
SplitApplyCombine = "1.2.3"

src/factorizations.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function MatrixAlgebraKit.left_polar!(
314314
A = unfluxify(A, charge; side = :domain)
315315

316316
Ad, (invrowperm, invcolperm) = BlockSparseArrays.blockdiagonalize(A)
317-
Ud, S, Vᴴd = svd_compact!(Ad, BlockDiagonalAlgorithm(alg.svdalg))
317+
Ud, S, Vᴴd = svd_compact!(Ad, BlockDiagonalAlgorithm(alg.svd_alg))
318318
U = BlockSparseArrays.transform_rows(Ud, invrowperm)
319319
Vᴴ = BlockSparseArrays.transform_cols(Vᴴd, invcolperm)
320320

@@ -332,7 +332,7 @@ function MatrixAlgebraKit.right_polar!(A::GradedMatrix, PWᴴ, alg::PolarViaSVD)
332332
A = unfluxify(A, charge; side = :codomain)
333333

334334
Ad, (invrowperm, invcolperm) = BlockSparseArrays.blockdiagonalize(A)
335-
Ud, S, Vᴴd = svd_compact!(Ad, BlockDiagonalAlgorithm(alg.svdalg))
335+
Ud, S, Vᴴd = svd_compact!(Ad, BlockDiagonalAlgorithm(alg.svd_alg))
336336
U = BlockSparseArrays.transform_rows(Ud, invrowperm)
337337
Vᴴ = BlockSparseArrays.transform_cols(Vᴴd, invcolperm)
338338

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ BlockArrays = "1.6"
2222
BlockSparseArrays = "0.10"
2323
GradedArrays = "0.5"
2424
LinearAlgebra = "1.10"
25-
MatrixAlgebraKit = "0.2, 0.3, 0.4, 0.5"
25+
MatrixAlgebraKit = "0.6"
2626
Random = "1.10"
2727
SUNRepresentations = "0.3"
2828
SafeTestsets = "0.1"

0 commit comments

Comments
 (0)