Allow dynamic shapes of tuple
type for inputs of dataclass
type
#117917
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
In
torch.export.export(f, args, kwargs, ..., dynamic_shpapes=None, ...)
,dataclass
is an acceptable type of inputs (for args and kwargs). Thedynamic_shapes
of thedataclass
inputs needs to be the samedataclass
type which replaces each tensor attributes withdynamic_shapes
of the corresponding tensors. (https://github.com/pytorch/pytorch/blob/main/torch/export/dynamic_shapes.py#L375)However, some
dataclass
may have limitations on the types of attributes (e.g., having to be tensors) such that the samedataclass
cannot be constructed for dynamic shapes.For an input of
dataclass
type, this task enables adynamic_shapes
of a tuple type that specifies dynamic shape specifications for each tensor of the input in the same order as the input dataclass type's flatten_fn (https://github.com/pytorch/pytorch/blob/main/torch/utils/_pytree.py#L103)Test Plan: buck test //caffe2/test:test_export
Differential Revision: D52932856