Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .ci/scripts/test_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ test_model_with_qnn() {
EXPORT_SCRIPT=edsr
# Additional deps for edsr
pip install piq
elif [[ "${MODEL_NAME}" == "fastvit" ]]; then
EXPORT_SCRIPT=fastvit
elif [[ "${MODEL_NAME}" == "conv_former" ]]; then
EXPORT_SCRIPT=conv_former
else
echo "Unsupported model $MODEL_NAME"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ jobs:
strategy:
matrix:
dtype: [fp32]
model: [dl3, mv3, mv2, ic4, ic3, vit, mb, w2l]
model: [dl3, mv3, mv2, ic4, ic3, vit, mb, w2l, fastvit, conv_former]
fail-fast: false
with:
runner: linux.2xlarge
Expand Down
Loading