53
53
CUDA_AARCH64_ARCHES = ["12.8-aarch64" ]
54
54
55
55
PACKAGE_TYPES = ["wheel" , "conda" , "libtorch" ]
56
- PRE_CXX11_ABI = "pre-cxx11"
57
56
CXX11_ABI = "cxx11-abi"
58
57
RELEASE = "release"
59
58
DEBUG = "debug"
@@ -177,23 +176,14 @@ def initialize_globals(channel: str, build_python_only: bool) -> None:
177
176
CUDA_AARCH64 : "pytorch/manylinuxaarch64-builder:cuda12.6" ,
178
177
}
179
178
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
- },
184
179
** {
185
180
(gpu_arch , CXX11_ABI ): f"pytorch/libtorch-cxx11-builder:cuda{ gpu_arch } "
186
181
for gpu_arch in CUDA_ARCHES
187
182
},
188
- ** {
189
- (gpu_arch , PRE_CXX11_ABI ): f"pytorch/manylinux-builder:rocm{ gpu_arch } "
190
- for gpu_arch in ROCM_ARCHES
191
- },
192
183
** {
193
184
(gpu_arch , CXX11_ABI ): f"pytorch/libtorch-cxx11-builder:rocm{ gpu_arch } "
194
185
for gpu_arch in ROCM_ARCHES
195
186
},
196
- (CPU , PRE_CXX11_ABI ): "pytorch/manylinux-builder:cpu" ,
197
187
(CPU , CXX11_ABI ): "pytorch/libtorch-cxx11-builder:cpu" ,
198
188
}
199
189
@@ -364,7 +354,7 @@ def generate_libtorch_matrix(
364
354
if os == WINDOWS :
365
355
abi_versions = [RELEASE , DEBUG ]
366
356
elif os == LINUX :
367
- abi_versions = [PRE_CXX11_ABI , CXX11_ABI ]
357
+ abi_versions = [CXX11_ABI ]
368
358
elif os in [MACOS_ARM64 ]:
369
359
abi_versions = [CXX11_ABI ]
370
360
else :
@@ -386,10 +376,6 @@ def generate_libtorch_matrix(
386
376
gpu_arch_type = arch_type (arch_version )
387
377
gpu_arch_version = "" if arch_version == CPU else arch_version
388
378
389
- # Rocm builds where removed for pre-cxx11 abi
390
- if gpu_arch_type == "rocm" and abi_version == PRE_CXX11_ABI :
391
- continue
392
-
393
379
desired_cuda = translate_desired_cuda (gpu_arch_type , gpu_arch_version )
394
380
devtoolset = abi_version if os != WINDOWS else ""
395
381
libtorch_config = abi_version if os == WINDOWS else ""
0 commit comments