(
self, memo: Optional[Dict[int, Any]] = None
)
| 557 | return executorch_prog |
| 558 | |
| 559 | def __deepcopy__( |
| 560 | self, memo: Optional[Dict[int, Any]] = None |
| 561 | ) -> "ExirExportedProgram": |
| 562 | new_eep = ExirExportedProgram( |
| 563 | copy.deepcopy(self.exported_program, memo), |
| 564 | self.after_to_edge_passes, |
| 565 | ) |
| 566 | return new_eep |
| 567 | |
| 568 | |
| 569 | @compatibility(is_backward_compatible=False) |
nothing calls this directly
no test coverage detected