Get the ExecutorchProgram from the ExecutorchProgramManager. Returns: The ExecutorchProgram Raises: RuntimeError: If the executorch program manager is not initialized
(self)
| 536 | ) |
| 537 | |
| 538 | def get_executorch_program(self) -> Program: |
| 539 | """ |
| 540 | Get the ExecutorchProgram from the ExecutorchProgramManager. |
| 541 | |
| 542 | Returns: |
| 543 | The ExecutorchProgram |
| 544 | |
| 545 | Raises: |
| 546 | RuntimeError: If the executorch program manager is not initialized |
| 547 | """ |
| 548 | return self.get_executorch_program_manager().executorch_program |
| 549 | |
| 550 | def get_executorch_program_manager(self) -> ExecutorchProgramManager: |
| 551 | """ |