(self, to_executorch_stage: Optional[ToExecutorch] = None)
| 249 | ) |
| 250 | |
| 251 | def to_executorch(self, to_executorch_stage: Optional[ToExecutorch] = None): |
| 252 | return self._run_stage( |
| 253 | to_executorch_stage or self._get_default_stage(StageType.TO_EXECUTORCH) |
| 254 | ) |
| 255 | |
| 256 | def serialize(self, serialize_stage: Optional[Serialize] = None): |
| 257 | return self._run_stage( |
no test coverage detected