Skip to content

Commit 2520d50

Browse files
authored
Include stories with qnn in benchinfra
Differential Revision: D62035079 Pull Request resolved: #4995
1 parent b95e4b3 commit 2520d50

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/android-perf.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
# Separate default values from the workflow dispatch. To ensure defaults are accessible
8585
# during scheduled runs and to provide flexibility for different defaults between
8686
# on-demand and periodic benchmarking.
87-
CRON_DEFAULT_MODELS: "dl3,mv3,mv2,ic4,ic3"
87+
CRON_DEFAULT_MODELS: "stories110M,dl3,mv3,mv2,ic4,ic3"
8888
CRON_DEFAULT_DEVICES: "samsung_galaxy_s2x"
8989
CRON_DEFAULT_DELEGATES: "xnnpack,qnn"
9090
run: |
@@ -162,6 +162,11 @@ jobs:
162162
# Test llama2
163163
if [[ ${{ matrix.delegate }} == "xnnpack" ]]; then
164164
DELEGATE_CONFIG="xnnpack+custom+qe"
165+
elif [[ ${{ matrix.delegate }} == "qnn" ]]; then
166+
DELEGATE_CONFIG="qnn"
167+
else
168+
echo "Unsupported delegate ${{ matrix.delegate }}"
169+
exit 1
165170
fi
166171
PYTHON_EXECUTABLE=python bash .ci/scripts/test_llama.sh "${{ matrix.model }}" "${BUILD_MODE}" "${DTYPE}" "${DELEGATE_CONFIG}" "${ARTIFACTS_DIR_NAME}"
167172
else

0 commit comments

Comments
 (0)