Skip to content

Commit 974c98f

Browse files
guangy10facebook-github-bot
authored andcommitted
More ff to pte renaming
Summary: As titled Reviewed By: JacobSzwejbka Differential Revision: D48282947 fbshipit-source-id: d096f9dbce0f20d3323c1e8e62483f43febd966d
1 parent 61dded9 commit 974c98f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ python3 -m examples.export.export_example --model_name="mv2" # for MobileNetv2
3939
# This should generate ./mv2.pte file, if successful.
4040
```
4141

42-
3. Once we have the model binary (ff) file, then let's run it with Executorch runtime using the `executor_runner`.
42+
3. Once we have the model binary (pte) file, then let's run it with Executorch runtime using the `executor_runner`.
4343

4444
```bash
4545
buck2 run examples/executor_runner:executor_runner -- --model_path mv2.pte

examples/export/export_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from .utils import _CAPTURE_CONFIG, _EDGE_COMPILE_CONFIG
1616

1717

18-
def export_to_ff(model_name, model, example_inputs):
18+
def export_to_pte(model_name, model, example_inputs):
1919
m = model.eval()
2020
edge = exir.capture(m, example_inputs, _CAPTURE_CONFIG).to_edge(
2121
_EDGE_COMPILE_CONFIG
@@ -51,4 +51,4 @@ def export_to_ff(model_name, model, example_inputs):
5151

5252
model, example_inputs = MODEL_NAME_TO_MODEL[args.model_name]()
5353

54-
export_to_ff(args.model_name, model, example_inputs)
54+
export_to_pte(args.model_name, model, example_inputs)

0 commit comments

Comments
 (0)