-
-
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
LU factorization on matrix with Inf/NaN errors in 1.9 #988
Comments
That was changed on purpose, see JuliaLang/julia#47098. |
What's the expected behavior? Is there anything actionable here or can we close this? |
At the very least, this check should respect the |
This was done in JuliaLang/julia#50134. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to port my code base from 1.7.3 to 1.9.0beta4 and test it, found some problems
Below is my version information
I locate the problem in the following code
Julia1.9.0beta4 gave me the following error:
I locate this problem in
\
function.Realized that the \ function is performed using lu decomposition, so I tried lu decomposition again, and also reported the following error to me
This made me realize that it might be Julia1.9.0beta4 calling lapack getrf! Caused by not returning and processing Inf or NaN in advance before the function
Below is what I get in 1.7.3
The text was updated successfully, but these errors were encountered: