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
MWE:
julia> import FiniteDifferences, Enzyme; using Distributions julia> func = (a, b, x) -> logpdf(truncated(Normal(), a, b), x) #29 (generic function with 1 method) julia> args = (-0.3, 0.3, 0.1) (-0.3, 0.3, 0.1) julia> Enzyme.gradient(Enzyme.Forward, Enzyme.Const(func), args...) (0.6272640800199636, -2.607264080019964, -1.09) julia> Enzyme.gradient(Enzyme.Reverse, Enzyme.Const(func), args...) (1.6172640800199638, -1.617264080019964, -0.1) julia> FiniteDifferences.grad(FiniteDifferences.central_fdm(4, 1), func, args...) (1.6172640800151292, -1.6172640800193545, -0.0999999999999462)
On Enzyme v0.13.11.
The text was updated successfully, but these errors were encountered:
A further reduction of this would be helpful to resolving
Sorry, something went wrong.
Would like to help, but unfortunately I'm too busy right now to find time to minimise further. Open for grabs for anyone to do it.
No branches or pull requests
MWE:
On Enzyme v0.13.11.
The text was updated successfully, but these errors were encountered: