From e9436056f91566d996e53b2f93f29b68bf09a90a Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Fri, 21 Aug 2026 08:05:24 -0700 Subject: [PATCH] [release/2.14] Remove CUDA 13.4 from the binary build matrix CUDA 13.4 is not shipping in the 2.14 release, so the release branch should not be building or testing it. The `release` channel already excluded 13.4; this drops it from the `nightly` and `test` channels too, along with the supporting arch/cudnn entries, so nothing on release/2.14 generates a 13.4 job. Changes in `tools/scripts/generate_binary_build_matrix.py`: - `CUDA_ARCHES_DICT`: drop `13.4` from `nightly` and `test` - `CUDA_CUDNN_VERSIONS`: drop the `13.4` entry - `CUDA_AARCH64_ARCHES`: drop `13.4-aarch64` - `CUDA_ARCHES_NO_WINDOWS`: now empty (13.4 was its only member) Test assets regenerated for the four affected matrices; each loses exactly the 8 CUDA 13.4 entries (one per Python version) with no other change: - `build_matrix_linux_wheel_cuda.json` 56 -> 48 - `build_matrix_linux_wheel_cuda_norocm.json` 40 -> 32 - `build_matrix_linux_wheel_nocpu.json` 48 -> 40 - `build_matrix_linux_wheel_xpu.json` 40 -> 32 The macOS and Windows assets are unchanged, as expected: macOS has no CUDA builds and 13.4 was already excluded from Windows. `tools/pkg-helpers/tests/test_cuda.py` still parametrizes over 13.4, which is left alone deliberately -- it exercises version-string sanitization on an arbitrary version and does not depend on the build matrix. --- tools/scripts/generate_binary_build_matrix.py | 9 +- .../assets/build_matrix_linux_wheel_cuda.json | 112 ------------------ .../build_matrix_linux_wheel_cuda_norocm.json | 112 ------------------ .../build_matrix_linux_wheel_nocpu.json | 112 ------------------ .../assets/build_matrix_linux_wheel_xpu.json | 112 ------------------ 5 files changed, 4 insertions(+), 453 deletions(-) diff --git a/tools/scripts/generate_binary_build_matrix.py b/tools/scripts/generate_binary_build_matrix.py index a86439d384..8340bb3b48 100755 --- a/tools/scripts/generate_binary_build_matrix.py +++ b/tools/scripts/generate_binary_build_matrix.py @@ -44,8 +44,8 @@ "3.14": "3.14.3", } CUDA_ARCHES_DICT = { - "nightly": ["12.6", "13.0", "13.2", "13.4"], - "test": ["12.6", "13.0", "13.2", "13.4"], + "nightly": ["12.6", "13.0", "13.2"], + "test": ["12.6", "13.0", "13.2"], "release": ["12.6", "13.0", "13.2"], } @@ -60,7 +60,6 @@ "12.8": {"cuda": "12.8.0", "cudnn": "9"}, "13.0": {"cuda": "13.0.0", "cudnn": "9"}, "13.2": {"cuda": "13.2.0", "cudnn": "9"}, - "13.4": {"cuda": "13.4.0", "cudnn": "9"}, } STABLE_CUDA_VERSIONS = { @@ -69,11 +68,11 @@ "release": "13.0", } -CUDA_AARCH64_ARCHES = ["12.6-aarch64", "13.0-aarch64", "13.2-aarch64", "13.4-aarch64"] +CUDA_AARCH64_ARCHES = ["12.6-aarch64", "13.0-aarch64", "13.2-aarch64"] # CUDA versions with no Windows torch build to depend on; see # CUDA_ARCHES_NO_WINDOWS in pytorch/pytorch. -CUDA_ARCHES_NO_WINDOWS = ["13.4"] +CUDA_ARCHES_NO_WINDOWS: list[str] = [] PACKAGE_TYPES = ["wheel", "libtorch"] CXX11_ABI = "cxx11-abi" diff --git a/tools/tests/assets/build_matrix_linux_wheel_cuda.json b/tools/tests/assets/build_matrix_linux_wheel_cuda.json index 024726f90a..e471c448fe 100644 --- a/tools/tests/assets/build_matrix_linux_wheel_cuda.json +++ b/tools/tests/assets/build_matrix_linux_wheel_cuda.json @@ -56,20 +56,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.10", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_10-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.10", "gpu_arch_type": "rocm", @@ -154,20 +140,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.11", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_11-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.11", "gpu_arch_type": "rocm", @@ -252,20 +224,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.12", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_12-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.12", "gpu_arch_type": "rocm", @@ -350,20 +308,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.13", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_13-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.13", "gpu_arch_type": "rocm", @@ -448,20 +392,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14", "gpu_arch_type": "rocm", @@ -546,20 +476,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14t", "gpu_arch_type": "rocm", @@ -644,20 +560,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15", "gpu_arch_type": "rocm", @@ -742,20 +644,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15t", "gpu_arch_type": "rocm", diff --git a/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json b/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json index f724cf231b..5ed5d27ce9 100644 --- a/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json +++ b/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json @@ -56,20 +56,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.10", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_10-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.11", "gpu_arch_type": "cpu", @@ -126,20 +112,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.11", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_11-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.12", "gpu_arch_type": "cpu", @@ -196,20 +168,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.12", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_12-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.13", "gpu_arch_type": "cpu", @@ -266,20 +224,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.13", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_13-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14", "gpu_arch_type": "cpu", @@ -336,20 +280,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14t", "gpu_arch_type": "cpu", @@ -406,20 +336,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15", "gpu_arch_type": "cpu", @@ -476,20 +392,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15t", "gpu_arch_type": "cpu", @@ -545,20 +447,6 @@ "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.13.0" - }, - { - "python_version": "3.15t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" } ] } \ No newline at end of file diff --git a/tools/tests/assets/build_matrix_linux_wheel_nocpu.json b/tools/tests/assets/build_matrix_linux_wheel_nocpu.json index 2f7c2d9e28..7c5afad3df 100644 --- a/tools/tests/assets/build_matrix_linux_wheel_nocpu.json +++ b/tools/tests/assets/build_matrix_linux_wheel_nocpu.json @@ -42,20 +42,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.10", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_10-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.10", "gpu_arch_type": "rocm", @@ -126,20 +112,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.11", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_11-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.11", "gpu_arch_type": "rocm", @@ -210,20 +182,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.12", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_12-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.12", "gpu_arch_type": "rocm", @@ -294,20 +252,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.13", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_13-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.13", "gpu_arch_type": "rocm", @@ -378,20 +322,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14", "gpu_arch_type": "rocm", @@ -462,20 +392,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14t", "gpu_arch_type": "rocm", @@ -546,20 +462,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15", "gpu_arch_type": "rocm", @@ -630,20 +532,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15t", "gpu_arch_type": "rocm", diff --git a/tools/tests/assets/build_matrix_linux_wheel_xpu.json b/tools/tests/assets/build_matrix_linux_wheel_xpu.json index 4ca528dfcb..efc43aabf3 100644 --- a/tools/tests/assets/build_matrix_linux_wheel_xpu.json +++ b/tools/tests/assets/build_matrix_linux_wheel_xpu.json @@ -42,20 +42,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.10", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_10-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.10", "gpu_arch_type": "xpu", @@ -112,20 +98,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.11", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_11-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.11", "gpu_arch_type": "xpu", @@ -182,20 +154,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.12", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_12-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.12", "gpu_arch_type": "xpu", @@ -252,20 +210,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.13", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_13-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.13", "gpu_arch_type": "xpu", @@ -322,20 +266,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14", "gpu_arch_type": "xpu", @@ -392,20 +322,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.14t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_14t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.14t", "gpu_arch_type": "xpu", @@ -462,20 +378,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15", "gpu_arch_type": "xpu", @@ -532,20 +434,6 @@ "upload_to_base_bucket": "no", "stable_version": "2.13.0" }, - { - "python_version": "3.15t", - "gpu_arch_type": "cuda", - "gpu_arch_version": "13.4", - "desired_cuda": "cu134", - "container_image": "pytorch/manylinux2_28-builder:cuda13.4", - "package_type": "manywheel", - "build_name": "manywheel-py3_15t-cuda13_4", - "validation_runner": "linux.g5.4xlarge.nvidia.gpu", - "installation": "pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu134", - "channel": "nightly", - "upload_to_base_bucket": "no", - "stable_version": "2.13.0" - }, { "python_version": "3.15t", "gpu_arch_type": "xpu",