Skip to content
Merged
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
5 changes: 2 additions & 3 deletions .github/workflows/test_models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for ExecuTorch
# Consolidate torchao nightly version once https://github.com/pytorch/ao/issues/2157 is fixed
run: |
if [ "${{ matrix.executorch-version }}" == "nightly" ]; then
export NIGHTLY_VERSION=dev20250501
export NIGHTLY_VERSION=dev20250507
pip install executorch==0.7.0.${NIGHTLY_VERSION} \
torch==2.8.0.${NIGHTLY_VERSION} \
torchvision==0.22.0.${NIGHTLY_VERSION} \
torchaudio==2.6.0.${NIGHTLY_VERSION} \
torchao==0.11.0.dev20250422 \
torchao==0.12.0.${NIGHTLY_VERSION} \
--extra-index-url "https://download.pytorch.org/whl/nightly/cpu"
else
pip install executorch==${{ matrix.executorch-version }}
Expand Down