From 514a4bfb746a304bbff940de6b1b6347d6698a80 Mon Sep 17 00:00:00 2001 From: Orion Reblitz-Richardson Date: Fri, 19 Apr 2024 17:44:29 -0700 Subject: [PATCH] [Nit] Fix ExecuTorch caps (#313) --- export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/export.py b/export.py index 737be57b58..d595082d8b 100644 --- a/export.py +++ b/export.py @@ -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: