-
Notifications
You must be signed in to change notification settings - Fork 63
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
Bijectors, reverse mode hangs #2033
Labels
Comments
Okay this one requires minimization and isn't resolved by current dev branches |
@penelopeysm and also would you be able to help reduce this one too? |
Giving this a shot now |
It's an issue with Cholesky on a zero-dim matrix: module MWE
import Enzyme, LinearAlgebra
function cholesky!(A)
C, info = LinearAlgebra._chol!(A, LinearAlgebra.UpperTriangular)
return C
end
f(x) = sum(cholesky!(copy(x)))
x = zeros((0, 0))
Enzyme.gradient(Enzyme.Reverse, f, x)
end |
fixed on main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MWE:
Output:
It seems to just hang after that. I ran out of patience after 5 minutes.
Enzyme current main branch.
The text was updated successfully, but these errors were encountered: