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
Copy file name to clipboardExpand all lines: ext/MatrixAlgebraKitGenericLinearAlgebraExt.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ function MatrixAlgebraKit.eigh_vals!(A::AbstractMatrix, D, ::GLA_QRIteration)
56
56
return eigvals!(Hermitian(A); sortby = real)
57
57
end
58
58
59
-
function MatrixAlgebraKit.default_qr_algorithm(::Type{T}; kwargs...) where {T <:StridedMatrix{<:Union{BigFloat, Complex{BigFloat}}}}
59
+
function MatrixAlgebraKit.default_qr_algorithm(::Type{T}; kwargs...) where {T <:StridedMatrix{<:Union{Float16, ComplexF16, BigFloat, Complex{BigFloat}}}}
60
60
return GLA_HouseholderQR(; kwargs...)
61
61
end
62
62
@@ -109,7 +109,7 @@ function _gla_householder_qr!(A::AbstractMatrix, Q, R; positive = false, blocksi
109
109
return Q, R
110
110
end
111
111
112
-
function MatrixAlgebraKit.default_lq_algorithm(::Type{T}; kwargs...) where {T <:StridedMatrix{<:Union{BigFloat, Complex{BigFloat}}}}
112
+
function MatrixAlgebraKit.default_lq_algorithm(::Type{T}; kwargs...) where {T <:StridedMatrix{<:Union{Float16, ComplexF16, BigFloat, Complex{BigFloat}}}}
0 commit comments