-
Notifications
You must be signed in to change notification settings - Fork 8
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
Array output seems to be initialized but not filled #97
Comments
This is not nice. Will investigate. |
FYI you can now use Taped with DifferentiationInterface.jl, the functionality has been merged in It is not documented but that may allow you to catch more bugs if you want to try out our test suite |
Amazing, thanks. I'll definitely give your test suite a go -- I'm sure there are holes in mine. |
On this, could you point me towards the test suite that I should be looking at? |
|
Okay. This should now be fixed on main. |
cool, thanks! |
Great. I'll close this. Please open more issues if you run into problems |
I caught this bug as part of my DifferentiationInterface.jl test suite. The first object returned by
value_and_pullback!!
looks like the result ofVector{Float64}(undef, n)
instead of containing the actual function output. And it changes from run to run. Meanwhile the VJP is stable and correct:The text was updated successfully, but these errors were encountered: