Skip to content

Commit e720b32

Browse files
Update test workflow
1 parent 4ec01be commit e720b32

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ jobs:
4949
build-cuda:
5050
strategy:
5151
matrix:
52-
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "12.9.1", "13.0.1"]
52+
# TODO: Add 13.0.1 when we have runners with new enough drivers.
53+
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "12.9.1"]
5354
os: [ubuntu-22.04, ubuntu-22.04-arm]
5455
include:
5556
- os: ubuntu-22.04
@@ -111,7 +112,7 @@ jobs:
111112
arch: aarch64
112113
- os: ubuntu-22.04-arm
113114
arch: aarch64
114-
torch_version: "2.5.1"
115+
torch_version: "2.5.1" # Higher minimum requirement for aarch64
115116
- os: windows-2025
116117
arch: x86_64
117118
- os: macos-15
@@ -182,7 +183,7 @@ jobs:
182183
- name: Setup Python
183184
uses: actions/setup-python@v5
184185
with:
185-
python-version: 3.9
186+
python-version: '3.10'
186187

187188
- name: Install dependencies
188189
run: |
@@ -313,7 +314,7 @@ jobs:
313314
- name: Setup Python
314315
uses: actions/setup-python@v5
315316
with:
316-
python-version: 3.9
317+
python-version: '3.10'
317318

318319
- name: Install PyTorch
319320
run: pip install torch==${{ matrix.torch_version }} --index-url https://download.pytorch.org/whl/xpu
@@ -343,23 +344,26 @@ jobs:
343344
os: [ubuntu-22.04, windows-2025]
344345
arch: [x86_64]
345346
gpu: [T4, L40S]
346-
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "12.9.1", "13.0.1"]
347+
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "12.9.1"] #, "13.0.1"]
347348
include:
348349
- cuda_version: "11.8.0"
349350
torch_version: "2.3.1"
350351
pypi_index: "https://download.pytorch.org/whl/cu118"
351352
- cuda_version: "12.6.3"
352353
torch_version: "2.6.0"
353354
pypi_index: "https://download.pytorch.org/whl/cu126"
354-
- cuda_version: "12.8.1"
355-
torch_version: "2.7.1"
356-
pypi_index: "https://download.pytorch.org/whl/cu128"
357355
- cuda_version: "12.9.1"
358356
torch_version: "2.8.0"
359357
pypi_index: "https://download.pytorch.org/whl/cu129"
360-
- cuda_version: "13.0.1"
358+
- cuda_version: "12.8.1"
361359
torch_version: "2.9.0"
362-
pypi_index: "https://download.pytorch.org/whl/test/cu130"
360+
pypi_index: "https://download.pytorch.org/whl/test/cu128"
361+
362+
# Note: Currently our runners do not have new enough drivers for CUDA 13.
363+
# Add this when supported.
364+
# - cuda_version: "13.0.1"
365+
# torch_version: "2.9.0"
366+
# pypi_index: "https://download.pytorch.org/whl/test/cu130"
363367

364368

365369
# Linux L40S runners

0 commit comments

Comments
 (0)