Skip to content

Commit

Permalink
fix wrong rebase output
Browse files Browse the repository at this point in the history
Signed-off-by: Masaki Kozuki <[email protected]>
  • Loading branch information
crcrpar committed Dec 9, 2024
1 parent 9925b34 commit 2b30049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thunder/core/proxies.py
Original file line number Diff line number Diff line change
Expand Up @@ -2193,7 +2193,7 @@ def tensorproxy(t: torch.Tensor, /, *, name: None | str, history: None | tuple =
lambda: f"{t=} seems to be a tensor subclass but not traceable",
)
tensor_attr_names, metadata = t.__tensor_flatten__()
tensors = [getattr(t, name) for name in tensor_attr_names]
tensors = [tensorproxy(getattr(t, name), name=None, history=history) for name in tensor_attr_names]
ctor_kwargs.update(
{
"tensors": tensors,
Expand Down

0 comments on commit 2b30049

Please sign in to comment.