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
Arm backend: Make download of ethos-u dependencies optional (#9734)
### Summary
This change makes the re-download of ethos-u dependencies optional
during cmake configutation when building the executorch_runner.
If the user opts out it is assumed that the dependencies are already
downloaded.
Copy file name to clipboardExpand all lines: examples/arm/run.sh
+1-1
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ function help() {
40
40
echo"Options:"
41
41
echo" --model_name=<MODEL> Model file .py/.pth/.pt, builtin model or a model from examples/models. Passed to aot_arm_compiler"
42
42
echo" --model_input=<INPUT> Provide model input .pt file to override the input in the model file. Passed to aot_arm_compiler"
43
-
echo" NOTE: Inference in FVP is done with a dummy input full of ones. Use bundleio flag to run the model in FVP with the custom input or the input from the model file."
43
+
echo" NOTE: Inference in FVP is done with a dummy input full of ones. Use bundleio flag to run the model in FVP with the custom input or the input from the model file."
44
44
echo" --aot_arm_compiler_flags=<FLAGS> Only used if --model_name is used Default: ${aot_arm_compiler_flags}"
45
45
echo" --portable_kernels=<OPS> Comma separated list of portable (non delagated) kernels to include Default: ${portable_kernels}"
46
46
echo" --target=<TARGET> Target to build and run for Default: ${target}"
0 commit comments