Skip to content

Commit 514a4bf

Browse files
orionrmalfet
authored andcommitted
[Nit] Fix ExecuTorch caps (#313)
1 parent ae8a253 commit 514a4bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

export.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ def main(args):
9595
output_pte_path = str(os.path.abspath(output_pte_path))
9696
print(f">{output_pte_path}<")
9797
if executorch_export_available:
98-
print(f"Exporting model using Executorch to {output_pte_path}")
98+
print(f"Exporting model using ExecuTorch to {output_pte_path}")
9999
export_model_et(
100100
model_to_pte, builder_args.device, args.output_pte_path, args
101101
)
102102
else:
103103
print(
104-
"Export with executorch requested but Executorch could not be loaded"
104+
"Export with executorch requested but ExecuTorch could not be loaded"
105105
)
106106
print(executorch_exception)
107107
if output_dso_path:

0 commit comments

Comments
 (0)