MCPcopy Create free account
hub / github.com/pytorch/executorch / get_verifiers

Method get_verifiers

backends/test/program_builder.py:95–107  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers 4

get_programMethod · 0.95

Calls 2

EXIREdgeDialectVerifierFunction · 0.90
EdgeCompileConfigClass · 0.90