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
As stated in the title, accum_param_gradients! does not support scale_factor for static functions. Calling accum_param_gradients! with a third argument returns ERROR: Not implemented, because it defaults to the abstract GFI definition.
This is due to (1) the lack of a generated method definition with the appropriate signature:
As stated in the title,
accum_param_gradients!
does not supportscale_factor
for static functions. Callingaccum_param_gradients!
with a third argument returnsERROR: Not implemented
, because it defaults to the abstract GFI definition.This is due to (1) the lack of a generated method definition with the appropriate signature:
Gen.jl/src/static_ir/backprop.jl
Lines 508 to 512 in e5ed96f
And (2) the lack of logic to handle a scale factor in the backward pass for trainable parameter nodes:
Gen.jl/src/static_ir/backprop.jl
Lines 169 to 185 in e5ed96f
The text was updated successfully, but these errors were encountered: