File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -860,8 +860,9 @@ jobs:
860860 # Run pytest
861861 PYTHON_EXECUTABLE=python bash backends/nxp/run_unittests.sh
862862
863- # Run aot example:
864- PYTHON_EXECUTABLE=python bash examples/nxp/run_aot_example.sh
863+ # Run aot examples:
864+ PYTHON_EXECUTABLE=python bash examples/nxp/run_aot_example.sh cifar10
865+ PYTHON_EXECUTABLE=python bash examples/nxp/run_aot_example.sh mobilenetv2
865866
866867
867868 test-vulkan-models-linux :
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ set -eux
77
88SCRIPT_DIR=$( dirname $( readlink -fm $0 ) )
99EXECUTORCH_DIR=$( dirname $( dirname $SCRIPT_DIR ) )
10+ MODEL=${1:- " cifar10" }
1011
1112cd $EXECUTORCH_DIR
1213
1314# Run the AoT example
1415python -m examples.nxp.aot_neutron_compile --quantize \
15- --delegate --neutron_converter_flavor SDK_25_03 -m cifar10
16+ --delegate --neutron_converter_flavor SDK_25_03 -m ${MODEL}
1617# verify file exists
17- test -f cifar10_nxp_delegate .pte
18+ test -f ${MODEL} _nxp_delegate .pte
You can’t perform that action at this time.
0 commit comments