You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cortex-M backend: fix Zephyr hello-executorch CI command
The Zephyr `hello-executorch` README has `<!-- RUN -->` directives that
the test-arm-backend-zephyr CI extracts and executes verbatim. The
prior wording used `--target=cortex-m55+int8`, which the AOT compiler
no longer accepts after the +int8 drop. Update both code blocks (and
the surrounding prose) to use the new bare `--target=cortex-m55`
spelling.
Authored with Claude.
`--target=cortex-m55+int8` selects the Cortex-M/CMSIS-NN portable kernel path (no NPU delegation). This produces a `.pte` optimized for Cortex-M55 with INT8 quantization.
57
+
`--target=cortex-m55` plus `--quantize` selects the Cortex-M/CMSIS-NN portable kernel path (no NPU delegation). This produces a `.pte` optimized for Cortex-M55 with INT8 quantization.
`--target=cortex-m55+int8` selects the Cortex-M/CMSIS-NN portable kernel path (no NPU delegation). This produces a `.pte` optimized for Cortex-M55 with INT8 quantization.
135
+
`--target=cortex-m55` plus `--quantize` selects the Cortex-M/CMSIS-NN portable kernel path (no NPU delegation). This produces a `.pte` optimized for Cortex-M55 with INT8 quantization.
0 commit comments