We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ab024 commit 0c0a1bcCopy full SHA for 0c0a1bc
test/test_blocksparsearrays.jl
@@ -64,7 +64,8 @@ arrayts = (Array, JLArray)
64
@test_broken inv(a)
65
end
66
67
- if arrayt === Array && elt <: Real
+ if (VERSION ≤ v"1.11-" && arrayt === Array && elt <: Complex) ||
68
+ (arrayt === Array && elt <: Real)
69
u, s, v = svd_compact(a)
70
@test Array(u * s * v) ≈ Array(a)
71
else
@@ -134,7 +135,10 @@ end
134
135
@test_broken exp(a)
136
137
- if arrayt === Array
138
+ if VERSION < v"1.11-" && elt <: Complex
139
+ # Broken because of type stability issue in Julia v1.10.
140
+ @test_broken svd_compact(a)
141
+ elseif arrayt === Array
142
143
@test u * s * v ≈ a
144
@test blocktype(u) === blocktype(a)
0 commit comments