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
Copy file name to clipboardExpand all lines: examples/arm/run.sh
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,8 @@ function help() {
39
39
echo"Usage: $(basename $0) [options]"
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
-
echo" --model_input=<INPUT> Provide model input .pt file to override the input in the model file. Passed to aot_arm_compiler"
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
44
echo" --aot_arm_compiler_flags=<FLAGS> Only used if --model_name is used Default: ${aot_arm_compiler_flags}"
44
45
echo" --portable_kernels=<OPS> Comma separated list of portable (non delagated) kernels to include Default: ${portable_kernels}"
45
46
echo" --target=<TARGET> Target to build and run for Default: ${target}"
@@ -200,7 +201,11 @@ for i in "${!test_model[@]}"; do
0 commit comments