Skip to content

Commit 0dcd8bd

Browse files
committed
Use cuda 12.6 wheels with Manylinux 2.28 only
1 parent 4742080 commit 0dcd8bd

4 files changed

Lines changed: 70 additions & 71 deletions

.github/scripts/generate_binary_build_matrix.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,15 @@ def arch_type(arch_version: str) -> str:
149149
DEFAULT_TAG = os.getenv("RELEASE_VERSION_TAG", "main")
150150

151151
WHEEL_CONTAINER_IMAGES = {
152-
**{
153-
gpu_arch: f"pytorch/manylinux2_28-builder:cuda{gpu_arch}-{DEFAULT_TAG}"
154-
for gpu_arch in CUDA_ARCHES
155-
},
152+
"11.8": f"pytorch/manylinux-builder:cuda11.8-{DEFAULT_TAG}",
153+
"12.4": f"pytorch/manylinux-builder:cuda12.4-{DEFAULT_TAG}",
154+
"12.6": f"pytorch/manylinux2_28-builder:cuda12.6-{DEFAULT_TAG}",
156155
**{
157156
gpu_arch: f"pytorch/manylinux-builder:rocm{gpu_arch}-{DEFAULT_TAG}"
158157
for gpu_arch in ROCM_ARCHES
159158
},
160159
"xpu": f"pytorch/manylinux2_28-builder:xpu-{DEFAULT_TAG}",
161-
"cpu": f"pytorch/manylinux2_28-builder:cpu-{DEFAULT_TAG}",
160+
"cpu": f"pytorch/manylinux-builder:cpu-{DEFAULT_TAG}",
162161
"cpu-cxx11-abi": f"pytorch/manylinuxcxx11-abi-builder:cpu-cxx11-abi-{DEFAULT_TAG}",
163162
"cpu-aarch64": f"pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-{DEFAULT_TAG}",
164163
"cpu-s390x": f"pytorch/manylinuxs390x-builder:cpu-s390x-{DEFAULT_TAG}",

.github/workflows/generated-linux-binary-manywheel-main.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)