Manage Exir-specific configurations of Dynamo.
| 594 | |
| 595 | @dataclass |
| 596 | class ExirDynamoConfig: |
| 597 | """ |
| 598 | Manage Exir-specific configurations of Dynamo. |
| 599 | """ |
| 600 | |
| 601 | allow_rnn: bool = True |
| 602 | verbose: bool = True |
| 603 | assume_static_by_default: bool = False |
| 604 | |
| 605 | |
| 606 | def flatten_output(gm: torch.fx.GraphModule) -> None: |