Skip to content

Commit

Permalink
[Nit] Fix ExecuTorch caps (pytorch#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
orionr authored and malfet committed Jul 17, 2024
1 parent ae8a253 commit 514a4bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions export.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ def main(args):
output_pte_path = str(os.path.abspath(output_pte_path))
print(f">{output_pte_path}<")
if executorch_export_available:
print(f"Exporting model using Executorch to {output_pte_path}")
print(f"Exporting model using ExecuTorch to {output_pte_path}")
export_model_et(
model_to_pte, builder_args.device, args.output_pte_path, args
)
else:
print(
"Export with executorch requested but Executorch could not be loaded"
"Export with executorch requested but ExecuTorch could not be loaded"
)
print(executorch_exception)
if output_dso_path:
Expand Down

0 comments on commit 514a4bf

Please sign in to comment.