Skip to content

Commit 0cc1475

Browse files
committed
Add cuda aarch64 builds to matrix. Update validation release matrix for 2.9 (pytorch#7143)
This PR does 3 things: 1. Adds CUDA aarch64 builds to matrix 2. Updates test channel for validations of 2.9 release 3. Updates current nightly to 2.10
1 parent 96dbd20 commit 0cc1475

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
PYTHON_ARCHES_DICT = {
2525
"nightly": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
26-
"test": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
26+
"test": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
2727
"release": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
2828
}
2929
CUDA_ARCHES_DICT = {
3030
"nightly": ["12.6", "12.8", "13.0"],
31-
"test": ["12.6", "12.8", "12.9"],
31+
"test": ["12.6", "12.8", "13.0"],
3232
"release": ["12.6", "12.8", "12.9"],
3333
}
3434

@@ -51,7 +51,7 @@
5151
"release": "12.8",
5252
}
5353

54-
CUDA_AARCH64_ARCHES = ["12.9-aarch64", "13.0-aarch64"]
54+
CUDA_AARCH64_ARCHES = ["12.6-aarch64", "12.8-aarch64", "13.0-aarch64"]
5555

5656
PACKAGE_TYPES = ["wheel", "libtorch"]
5757
CXX11_ABI = "cxx11-abi"
@@ -76,8 +76,8 @@
7676
XPU = "xpu"
7777

7878

79-
CURRENT_NIGHTLY_VERSION = "2.9.0"
80-
CURRENT_CANDIDATE_VERSION = "2.8.0"
79+
CURRENT_NIGHTLY_VERSION = "2.10.0"
80+
CURRENT_CANDIDATE_VERSION = "2.9.0"
8181
CURRENT_STABLE_VERSION = "2.8.0"
8282
CURRENT_VERSION = CURRENT_STABLE_VERSION
8383

0 commit comments

Comments
 (0)