| 382 | |
| 383 | @dataclass |
| 384 | class ExportedProgram: |
| 385 | graph_module: GraphModule |
| 386 | # Key is the opset namespace (ex. aten), and value is the version number |
| 387 | opset_version: Dict[str, int] |
| 388 | range_constraints: Dict[str, RangeConstraint] |
| 389 | schema_version: SchemaVersion |
| 390 | dialect: str |
| 391 | verifiers: List[str] = field(default_factory=list) |
| 392 | dialect: str = "" # TODO deprecated |
| 393 | |
| 394 | |
| 395 | @dataclass |
no outgoing calls
no test coverage detected