We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 955b991 commit 47bed4cCopy full SHA for 47bed4c
.ci/scripts/test_model.sh
@@ -99,8 +99,10 @@ test_model() {
99
"${PYTHON_EXECUTABLE}" -m examples.models.llama.export_llama --model "${MODEL_NAME}" -c examples/models/llama/params/demo_rand_params.pth -p examples/models/qwen2_5/1_5b_config.json
100
run_portable_executor_runner
101
rm "./${MODEL_NAME}.pte"
102
+ return # Skip running with portable executor runnner since portable doesn't support Qwen's biased linears.
103
fi
- # python3 -m examples.portable.scripts.export --model_name="llama2" should works too
104
+
105
+ # Export a basic .pte and run the model.
106
"${PYTHON_EXECUTABLE}" -m examples.portable.scripts.export --model_name="${MODEL_NAME}" "${STRICT}"
107
108
}
0 commit comments