Skip to content
Merged
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: 2 additions & 2 deletions .github/workflows/android-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ jobs:
git clone https://github.com/huggingface/optimum-executorch
pushd optimum-executorch
# There is no release yet, for CI stability, always test from the same commit on main
git checkout 1c653dc49812fc431a22312c7295d97005d22e12
python install_dev.py
git checkout 4c3b18f6cca68c5ccff809131d570062723d7188
python install_dev.py --skip_override_torch
pip list

ARGS=(
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/apple-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ jobs:
git clone https://github.com/huggingface/optimum-executorch
pushd optimum-executorch
# There is no release yet, for CI stability, always test from the same commit on main
git checkout 1c653dc49812fc431a22312c7295d97005d22e12
${CONDA_RUN} python install_dev.py
git checkout 4c3b18f6cca68c5ccff809131d570062723d7188
${CONDA_RUN} python install_dev.py --skip_override_torch
pip list

ARGS=(
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,8 @@ jobs:
git clone https://github.com/huggingface/optimum-executorch
pushd optimum-executorch
# There is no release yet, for CI stability, always test from the same commit on main
git checkout 1c653dc49812fc431a22312c7295d97005d22e12
pip install .[tests]
pip install transformers==4.52.4
git checkout 4c3b18f6cca68c5ccff809131d570062723d7188
python install_dev.py --skip_override_torch
popd
pip list
echo "::endgroup::"
Expand Down
Loading