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
# within kernel function...
set = @objects(tr, Blip)
# ... later
@get_number(tr, Blip(Aircraft(1), Timestep(2)))
# This causes an error because the number statement was looked up when constructing `set`, and the trace kernel DSL tries to track a gradient for the lookup twice
Really we don't even want to track gradients for number statement lookups! That would fix the error.
The text was updated successfully, but these errors were encountered:
This causes an error if
tr
is a TraceToken.E.g.
Really we don't even want to track gradients for number statement lookups! That would fix the error.
The text was updated successfully, but these errors were encountered: