diff --git a/tools/scripts/generate_binary_build_matrix.py b/tools/scripts/generate_binary_build_matrix.py index 9d7eb06f1e..bddc09694e 100755 --- a/tools/scripts/generate_binary_build_matrix.py +++ b/tools/scripts/generate_binary_build_matrix.py @@ -148,15 +148,14 @@ def initialize_globals(channel: str, build_python_only: bool) -> None: else: PYTHON_ARCHES = PYTHON_ARCHES_DICT[channel] WHEEL_CONTAINER_IMAGES = { - **{ - gpu_arch: f"pytorch/manylinux2_28-builder:cuda{gpu_arch}" - for gpu_arch in CUDA_ARCHES - }, + "11.8": f"pytorch/manylinux-builder:cuda11.8-{DEFAULT_TAG}", + "12.4": f"pytorch/manylinux-builder:cuda12.4-{DEFAULT_TAG}", + "12.6": f"pytorch/manylinux2_28-builder:cuda12.6-{DEFAULT_TAG}", **{ gpu_arch: f"pytorch/manylinux-builder:rocm{gpu_arch}" for gpu_arch in ROCM_ARCHES }, - CPU: "pytorch/manylinux2_28-builder:cpu", + CPU: "pytorch/manylinux-builder:cpu", XPU: "pytorch/manylinux2_28-builder:xpu", # TODO: Migrate CUDA_AARCH64 image to manylinux2_28_aarch64-builder:cuda12.4 CPU_AARCH64: "pytorch/manylinux2_28_aarch64-builder:cpu-aarch64",