Skip to content

Commit bcdef6f

Browse files
ci: test with torch 2.13; run aarch64 cpu test on ubuntu24
1 parent b4057b8 commit bcdef6f

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/test-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
esac
7373
fi
7474
;;
75-
linux-aarch64) TEST_RUNNER="ubuntu-22.04-arm" ;;
75+
linux-aarch64) TEST_RUNNER="ubuntu-24.04-arm" ;;
7676
macos) TEST_RUNNER="macos-15" ;;
7777
windows)
7878
[[ "${{ inputs.backend }}" == "cuda" ]] && TEST_RUNNER="CUDA-Windows-x64" || TEST_RUNNER="windows-2025"

.github/workflows/tests-nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
platform: [linux-x64, linux-aarch64, macos, windows, windows-arm64]
2121
# default runners don't have AVX-512 support, but icelake does
2222
cpu_type: ["", icelake]
23-
torch_version: ["2.4.1", "2.12.0", "nightly"]
23+
torch_version: ["2.4.1", "2.12.1", "2.13.0", "nightly"]
2424

2525
exclude:
2626
# aarch64 minimum torch version is 2.5.1
@@ -54,7 +54,7 @@ jobs:
5454
platform: ${{ matrix.platform }}
5555
backend: cpu
5656
torch_version: ${{ matrix.torch_version }}
57-
pypi_index: "https://download.pytorch.org/whl/cpu"
57+
pypi_index: ${{ matrix.torch_version == 'nightly' && 'https://download.pytorch.org/whl/nightly/cpu' || 'https://download.pytorch.org/whl/cpu' }}
5858
cpu_type: ${{ matrix.cpu_type }}
5959

6060
test-cuda:
@@ -74,13 +74,13 @@ jobs:
7474
torch_version: "2.4.1"
7575
pypi_index: "https://download.pytorch.org/whl/cu118"
7676
- cuda_version: "12.6.3"
77-
torch_version: "2.11.0"
77+
torch_version: "2.12.1"
7878
pypi_index: "https://download.pytorch.org/whl/cu126"
7979
- cuda_version: "12.8.1"
80-
torch_version: "2.10.0"
80+
torch_version: "2.11.0"
8181
pypi_index: "https://download.pytorch.org/whl/cu128"
8282
- cuda_version: "13.0.2"
83-
torch_version: "2.12.0"
83+
torch_version: "2.13.0"
8484
pypi_index: "https://download.pytorch.org/whl/cu130"
8585
- cuda_version: "13.2.0"
8686
torch_version: "nightly"

.github/workflows/tests-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
platform: [linux-x64, linux-aarch64, macos, windows-arm64]
3232
# default runners don't have AVX-512 support, but icelake does
3333
cpu_type: ["", icelake]
34-
torch_version: ["2.4.1", "2.12.0"]
34+
torch_version: ["2.4.1", "2.13.0"]
3535

3636
exclude:
3737
# aarch64 minimum torch version is 2.5.1
@@ -79,10 +79,10 @@ jobs:
7979
torch_version: "2.4.1"
8080
pypi_index: "https://download.pytorch.org/whl/cu118"
8181
- cuda_version: "12.6.3"
82-
torch_version: "2.11.0"
82+
torch_version: "2.12.1"
8383
pypi_index: "https://download.pytorch.org/whl/cu126"
8484
- cuda_version: "13.0.2"
85-
torch_version: "2.12.0"
85+
torch_version: "2.13.0"
8686
pypi_index: "https://download.pytorch.org/whl/cu130"
8787

8888
# Windows CUDA test - single configuration

0 commit comments

Comments
 (0)