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
Using j′vp on a QR factorization result in a stackoverflow, like in the following example:
j′vp
using FiniteDifferences using LinearAlgebra X = randn(5, 5) j′vp(central_fdm(5, 1), X->qr(X).Q, randn(5, 5), X)
I believe it is due to the fact that vec(Q) return a Base.ReshapedArray (for Q, R = qr(X)).
vec(Q)
Base.ReshapedArray
Q, R = qr(X)
Causes problem while testing JuliaDiff/ChainRules.jl#306
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Using
j′vp
on a QR factorization result in a stackoverflow, like in the following example:I believe it is due to the fact that
vec(Q)
return aBase.ReshapedArray
(forQ, R = qr(X)
).Causes problem while testing JuliaDiff/ChainRules.jl#306
The text was updated successfully, but these errors were encountered: