Skip to content

Commit 51699c8

Browse files
authored
[validations] Remove libtorch PRE_CXX11_ABI from matrix. (#6433)
Remove libtorch PRE_CXX11_ABI from matrix failures can be seen here: https://github.com/pytorch/test-infra/actions/runs/13906844473/job/38911966250
1 parent d48dc52 commit 51699c8

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

tools/scripts/generate_binary_build_matrix.py

+1-15
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
CUDA_AARCH64_ARCHES = ["12.8-aarch64"]
5454

5555
PACKAGE_TYPES = ["wheel", "conda", "libtorch"]
56-
PRE_CXX11_ABI = "pre-cxx11"
5756
CXX11_ABI = "cxx11-abi"
5857
RELEASE = "release"
5958
DEBUG = "debug"
@@ -177,23 +176,14 @@ def initialize_globals(channel: str, build_python_only: bool) -> None:
177176
CUDA_AARCH64: "pytorch/manylinuxaarch64-builder:cuda12.6",
178177
}
179178
LIBTORCH_CONTAINER_IMAGES = {
180-
**{
181-
(gpu_arch, PRE_CXX11_ABI): f"pytorch/manylinux-builder:cuda{gpu_arch}"
182-
for gpu_arch in CUDA_ARCHES
183-
},
184179
**{
185180
(gpu_arch, CXX11_ABI): f"pytorch/libtorch-cxx11-builder:cuda{gpu_arch}"
186181
for gpu_arch in CUDA_ARCHES
187182
},
188-
**{
189-
(gpu_arch, PRE_CXX11_ABI): f"pytorch/manylinux-builder:rocm{gpu_arch}"
190-
for gpu_arch in ROCM_ARCHES
191-
},
192183
**{
193184
(gpu_arch, CXX11_ABI): f"pytorch/libtorch-cxx11-builder:rocm{gpu_arch}"
194185
for gpu_arch in ROCM_ARCHES
195186
},
196-
(CPU, PRE_CXX11_ABI): "pytorch/manylinux-builder:cpu",
197187
(CPU, CXX11_ABI): "pytorch/libtorch-cxx11-builder:cpu",
198188
}
199189

@@ -364,7 +354,7 @@ def generate_libtorch_matrix(
364354
if os == WINDOWS:
365355
abi_versions = [RELEASE, DEBUG]
366356
elif os == LINUX:
367-
abi_versions = [PRE_CXX11_ABI, CXX11_ABI]
357+
abi_versions = [CXX11_ABI]
368358
elif os in [MACOS_ARM64]:
369359
abi_versions = [CXX11_ABI]
370360
else:
@@ -386,10 +376,6 @@ def generate_libtorch_matrix(
386376
gpu_arch_type = arch_type(arch_version)
387377
gpu_arch_version = "" if arch_version == CPU else arch_version
388378

389-
# Rocm builds where removed for pre-cxx11 abi
390-
if gpu_arch_type == "rocm" and abi_version == PRE_CXX11_ABI:
391-
continue
392-
393379
desired_cuda = translate_desired_cuda(gpu_arch_type, gpu_arch_version)
394380
devtoolset = abi_version if os != WINDOWS else ""
395381
libtorch_config = abi_version if os == WINDOWS else ""

0 commit comments

Comments
 (0)