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 65b9af3 commit 565a035Copy full SHA for 565a035
.github/workflows/trunk.yml
@@ -768,6 +768,11 @@ jobs:
768
# There is no release yet, for CI stability, always test from the same commit on main
769
git checkout $OPTIMUM_ET_COMMIT
770
${CONDA_RUN} python install_dev.py --skip_override_torch
771
+
772
+ # When using transformers 4.53 onward, optimum-et uses dynamic shapes for LLMs
773
+ # and this doesn't export on CoreML. Until we add the ability to disable dynamic shapes
774
+ # in "optimum-cli export executorch", we need to pin transformers to 4.52.4
775
+ ${CONDA_RUN} pip install transformers==4.52.4 --force-reinstall
776
popd
777
${CONDA_RUN} pip list
778
echo "::endgroup::"
0 commit comments