You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Zygote
struct MyStruct
x::Float64
y::Float64
MyStruct(x) = new(x)
end
function create_and_use(x)
s = MyStruct(x)
return s.x * 2
end
println(create_and_use(1.0))
gradient(create_and_use, 2.0)
MRE:
output:
Reverting #1220 fixes, also see JuliaLang/julia#47388
This is currently breaking SciMLSensitivity ZygoteAdjoint (not the only problem though).
The text was updated successfully, but these errors were encountered: