(self, partition_stage: Optional[Partition] = None)
| 244 | ) |
| 245 | |
| 246 | def partition(self, partition_stage: Optional[Partition] = None): |
| 247 | return self._run_stage( |
| 248 | partition_stage or self._get_default_stage(StageType.PARTITION) |
| 249 | ) |
| 250 | |
| 251 | def to_executorch(self, to_executorch_stage: Optional[ToExecutorch] = None): |
| 252 | return self._run_stage( |
no test coverage detected