-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
LinearAlgebra: eigen decomposition of Symmetric Matrix containing NaNs never throws. It just runs forever. #780
Comments
|
Can't reproduce here (using MKL). Probably an OpenBLAS issue. |
Could reproduce on Linux. Produced the following stack trace, when interrupted:
There seems missing a call to
|
This is also a problem with Hermitian matrices. No issue with Diagonal matrices though.
|
The LAPACK world is free from |
… now throws exception (JuliaLang#38408)
On my (Windows) PC the following runs forever without ever throwing or finishing. The error seems to come from inside LAPACK. The key elements seems to be that the matrix is Symmetric and contains a NaN.
using LinearAlgebra aa = [1 2 3; 2 NaN 4; 3 4 5] bb = Symmetric(aa) eigen(bb)
The text was updated successfully, but these errors were encountered: