We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cab2e8 commit 6bdb1d5Copy full SHA for 6bdb1d5
test/testsuite/eigh.jl
@@ -72,7 +72,9 @@ function test_eigh_trunc(
72
)
73
summary_str = testargs_summary(T, sz)
74
return @testset "eigh_trunc! $summary_str" begin
75
- A = project_hermitian!(instantiate_matrix(T, sz))
+ A = instantiate_matrix(T, sz)
76
+ A = A * A'
77
+ A = project_hermitian!(A)
78
Ac = deepcopy(A)
79
if !(T <: Diagonal)
80
@@ -148,7 +150,9 @@ function test_eigh_trunc_algs(
148
150
149
151
152
return @testset "eigh_trunc! algorithm $alg $summary_str" for alg in algs
153
154
155
156
157
158
m = size(A, 1)
0 commit comments