Skip to content

Commit

Permalink
Fix failing tpu tests (#3261)
Browse files Browse the repository at this point in the history
* Update tpu-tests.yml

* Update tpu-tests.yml
  • Loading branch information
vfdev-5 authored Jul 31, 2024
1 parent 2ac34be commit 65352ad
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/tpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
architecture: "x64"

- name: Get year & week number
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Get pip cache dir
id: pip-cache
run: |
pip3 install -U pip
pip3 install -U "pip<24"
echo "pip_cache=$(pip cache dir)" >> $GITHUB_OUTPUT
shell: bash -l {0}

Expand All @@ -70,10 +70,9 @@ jobs:
pip install mkl==2021.4.0
## Install torch & xla and torchvision
pip install --pre https://storage.googleapis.com/tpu-pytorch/wheels/colab/torch-nightly-cp39-cp39-linux_x86_64.whl
pip install --pre https://storage.googleapis.com/tpu-pytorch/wheels/colab/torch_xla-nightly-cp39-cp39-linux_x86_64.whl
pip install --pre https://storage.googleapis.com/tpu-pytorch/wheels/colab/torchvision-nightly-cp39-cp39-linux_x86_64.whl
pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
pip install https://storage.googleapis.com/pytorch-xla-releases/wheels/tpuvm/torch_xla-nightly-cp310-cp310-linux_x86_64.whl
# Check installation
python -c "import torch"
Expand Down

0 comments on commit 65352ad

Please sign in to comment.