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
Fixing this issue depends on also first fixing pytorch/pytorch#123411 so that the original 'split_graph' retains the 'non_persistent' attribute.
if is_buffer:
_assign_attr(
param_val,
callee,
param_fqn,
attr_kind=_AttrKind.BUFFER,
persistent=True, # <------------- This value should not be hardcoded
)
else:
_assign_attr(
param_val,
callee,
param_fqn,
attr_kind=_AttrKind.PARAMETER,
)
The text was updated successfully, but these errors were encountered:
Fixing this issue depends on also first fixing pytorch/pytorch#123411 so that the original 'split_graph' retains the 'non_persistent' attribute.
The text was updated successfully, but these errors were encountered: