Skip to content

Commit 951cd2e

Browse files
authored
Arm backend: Fix non-delegated typo (#20069)
Summary: Fix user-facing Arm non-delegated operator messages. Test plan: bash -n backends/arm/scripts/build_executor_runner.sh lintrunner -a --skip MYPY backends/arm/scripts/build_executor_runner.sh examples/arm/executor_runner/CMakeLists.txt zephyr/samples/hello-executorch/CMakeLists.txt backends/arm/scripts/pre-push 1 cc @digantdesai @freddan80 @per @zingo @oscarandersson8218 @mansnils @Sebastian-Larsson @robell @rascani
1 parent 9898bc5 commit 951cd2e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

backends/arm/scripts/build_executor_runner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ help() {
5454
echo " --et_build_root=<FOLDER> Build output root folder to use, defaults to ${et_build_root}"
5555
echo " --ethosu_tools_dir=<FOLDER> Path to your Ethos-U tools dir if you not using default: ${ethosu_tools_dir}"
5656
echo " --toolchain=<TOOLCHAIN> Toolchain can be specified (arm-none-eabi-gcc, arm-zephyr-eabi-gcc). Default: ${toolchain}"
57-
echo " --select_ops_list=<OPS> Comma separated list of portable (non delagated) kernels to include Default: ${select_ops_list}"
57+
echo " --select_ops_list=<OPS> Comma separated list of portable (non-delegated) kernels to include Default: ${select_ops_list}"
5858
echo " NOTE: This is used when select_ops_model is not possible to use, e.g. for semihosting or bundleio."
5959
echo " See https://docs.pytorch.org/executorch/stable/kernel-library-selective-build.html for more information."
6060
exit 0

examples/arm/executor_runner/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ elseif(FOUND_OPS_IN_FILE)
358358
else()
359359
set(EXECUTORCH_SELECT_OPS_MODEL "")
360360
message(
361-
"gen_oplist: No non delagated ops was found in ${ET_PTE_FILE_PATH} no ops added to build"
361+
"gen_oplist: No non-delegated ops were found in ${ET_PTE_FILE_PATH}; no ops added to build"
362362
)
363363
endif()
364364

zephyr/samples/hello-executorch/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ else()
8181
set(EXECUTORCH_SELECT_OPS_MODEL "")
8282
set(_EXECUTORCH_GEN_ZEPHYR_PORTABLE_OPS OFF)
8383
message(
84-
"gen_oplist: No non delagated ops was found in ${ET_PTE_FILE_PATH} no ops added to build"
84+
"gen_oplist: No non-delegated ops were found in ${ET_PTE_FILE_PATH}; no ops added to build"
8585
)
8686
endif()
8787

0 commit comments

Comments
 (0)