We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A lot of functions in linalg/factorization.jl (and perhaps elsewhere in LinAlg) have methods like:
linalg/factorization.jl
function eigfact!{T<:BlasReal}(A::StridedMatrix{T}) ... end function eigfact!{T<:BlasComplex}(A::StridedMatrix{T}) ... end eigfact!(A::StridedMatrix) = eigfact!(float(A))
This gives a stack overflow if float(A) does not return a BlasReal or BlasComplex, e.g. if eltype(A) is Float16 or BigFloat.
float(A)
eltype(A)
The text was updated successfully, but these errors were encountered:
Related: #11, #19. But even if we don't have these functions, we should give a MethodError or a BlasFloat result, not a stack overflow.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
A lot of functions in
linalg/factorization.jl
(and perhaps elsewhere in LinAlg) have methods like:This gives a stack overflow if
float(A)
does not return a BlasReal or BlasComplex, e.g. ifeltype(A)
is Float16 or BigFloat.The text was updated successfully, but these errors were encountered: