(self)
| 93 | return super().output(results) |
| 94 | |
| 95 | def get_verifiers(self) -> Optional[list[Verifier]]: |
| 96 | if self.mode == IrMode.ATEN: |
| 97 | return None |
| 98 | return [ |
| 99 | EXIREdgeDialectVerifier( |
| 100 | edge_compile_config=EdgeCompileConfig( |
| 101 | _check_ir_validity=False, |
| 102 | _core_aten_ops_exception_list=self._core_aten_ops_exception_list, |
| 103 | ), |
| 104 | core_aten_ops_exception_list=self._core_aten_ops_exception_list, |
| 105 | class_only=True, |
| 106 | ) |
| 107 | ] |
| 108 | |
| 109 | def get_program(self) -> ExportedProgram: |
| 110 | gm = self.get_graph_module() |