You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function MatrixAlgebraKit.eigh_vals!(A::AbstractMatrix, D, ::GLA_QRIteration)
67
-
ifisnothing(D)
68
-
D =eigvals!(Hermitian(A); sortby = real)
69
-
else
70
-
copyto!(D, eigvals!(Hermitian(A); sortby = real))
71
-
end
72
-
return D
56
+
returneigvals!(Hermitian(A); sortby = real)
73
57
end
74
58
75
59
function MatrixAlgebraKit.default_qr_algorithm(::Type{T}; kwargs...) where {T <:StridedMatrix{<:Union{Float16, ComplexF16, BigFloat, Complex{BigFloat}}}}
0 commit comments