mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
When trying to bring cu129 back in https://github.com/pytorch/pytorch/pull/163029, I mainly looked at https://github.com/pytorch/pytorch/pull/163029 and missed another tweak coming from https://github.com/pytorch/pytorch/pull/162455
I discover this issue when testing aarch64+cu129 builds in https://github.com/pytorch/test-infra/actions/runs/18603342105/job/53046883322?pr=7373. Surprisingly, there is no test running for aarch64 CUDA build from what I see in 79a37055e7
.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/165794
Approved by: https://github.com/malfet
1792 lines
91 KiB
YAML
Generated
1792 lines
91 KiB
YAML
Generated
# @generated DO NOT EDIT MANUALLY
|
|
|
|
# Template is at: .github/templates/linux_binary_build_workflow.yml.j2
|
|
# Generation script: .github/scripts/generate_ci_workflows.py
|
|
name: linux-aarch64-binary-manywheel
|
|
|
|
|
|
on:
|
|
push:
|
|
# NOTE: Meta Employees can trigger new nightlies using: https://fburl.com/trigger_pytorch_nightly_build
|
|
branches:
|
|
- nightly
|
|
tags:
|
|
# NOTE: Binary build pipelines should only get triggered on release candidate builds
|
|
# Release candidate tags look like: v1.11.0-rc1
|
|
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
|
|
- 'ciflow/binaries/*'
|
|
- 'ciflow/binaries_wheel/*'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
id-token: write
|
|
|
|
env:
|
|
# Needed for conda builds
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
AWS_DEFAULT_REGION: us-east-1
|
|
BINARY_ENV_FILE: /tmp/env
|
|
BUILD_ENVIRONMENT: linux-aarch64-binary-manywheel
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
PYTORCH_FINAL_PACKAGE_DIR: /artifacts
|
|
PYTORCH_ROOT: /pytorch
|
|
SHA1: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
SKIP_ALL_TESTS: 0
|
|
concurrency:
|
|
group: linux-aarch64-binary-manywheel-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
get-label-type:
|
|
if: github.repository_owner == 'pytorch'
|
|
name: get-label-type
|
|
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main
|
|
with:
|
|
triggering_actor: ${{ github.triggering_actor }}
|
|
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
|
|
curr_branch: ${{ github.head_ref || github.ref_name }}
|
|
curr_ref_type: ${{ github.ref_type }}
|
|
manywheel-py3_10-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.10"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_10-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_10-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_10-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_10-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.10"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_10-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_10-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.10"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_10-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_10-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.10"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_10-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_10-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.10"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_10-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_10-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_10-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.10"
|
|
build_name: manywheel-py3_10-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_11-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.11"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_11-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_11-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_11-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_11-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.11"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_11-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_11-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.11"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_11-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_11-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.11"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_11-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_11-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.11"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_11-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_11-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_11-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.11"
|
|
build_name: manywheel-py3_11-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_12-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.12"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_12-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_12-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_12-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_12-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.12"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_12-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_12-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.12"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_12-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_12-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.12"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_12-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_12-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.12"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_12-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_12-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_12-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.12"
|
|
build_name: manywheel-py3_12-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_13-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.13"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.13"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.13"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.13"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.13"
|
|
build_name: manywheel-py3_13-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13t-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13t-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_13t-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13t-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13t-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.13t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13t-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13t-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.13t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13t-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13t-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.13t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13t-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_13t-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.13t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_13t-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_13t-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.13t"
|
|
build_name: manywheel-py3_13t-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_14-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.14"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.14"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.14"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.14"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.14"
|
|
build_name: manywheel-py3_14-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14t-cpu-aarch64-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14t-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cpu-aarch64-test: # Testing
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
needs:
|
|
- manywheel-py3_14t-cpu-aarch64-build
|
|
- get-label-type
|
|
uses: ./.github/workflows/_binary-test-linux.yml
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cpu-aarch64
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.2xlarge
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cpu-aarch64-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14t-cpu-aarch64-test
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cpu
|
|
GPU_ARCH_TYPE: cpu-aarch64
|
|
DOCKER_IMAGE: manylinux2_28_aarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cpu-aarch64
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cpu-aarch64
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14t-cuda-aarch64-12_6-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.14t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_6
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cuda-aarch64-12_6-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14t-cuda-aarch64-12_6-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu126
|
|
GPU_ARCH_VERSION: "12.6-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.6
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_6
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14t-cuda-aarch64-12_8-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.14t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_8
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.8.93; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.8.90; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.8.90; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.8.4.1; platform_system == 'Linux' | nvidia-cufft-cu12==11.3.3.83; platform_system == 'Linux' | nvidia-curand-cu12==10.3.9.90; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.3.90; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cuda-aarch64-12_8-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14t-cuda-aarch64-12_8-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu128
|
|
GPU_ARCH_VERSION: "12.8-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.8
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_8
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14t-cuda-aarch64-12_9-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.14t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_9
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cuda-aarch64-12_9-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14t-cuda-aarch64-12_9-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu129
|
|
GPU_ARCH_VERSION: "12.9-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda12.9
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-12_9
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|
|
|
|
manywheel-py3_14t-cuda-aarch64-13_0-build:
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
uses: ./.github/workflows/_binary-build-linux.yml
|
|
needs: get-label-type
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.14t"
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
runs_on: linux.arm64.r7g.12xlarge.memory
|
|
ALPINE_IMAGE: "arm64v8/alpine"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-13_0
|
|
build_environment: linux-aarch64-binary-manywheel
|
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | nvidia-cuda-cupti==13.0.48; platform_system == 'Linux' | nvidia-cudnn-cu13==9.13.0.50; platform_system == 'Linux' | nvidia-cublas==13.0.0.19; platform_system == 'Linux' | nvidia-cufft==12.0.0.15; platform_system == 'Linux' | nvidia-curand==10.4.0.35; platform_system == 'Linux' | nvidia-cusolver==12.0.3.29; platform_system == 'Linux' | nvidia-cusparse==12.6.2.49; platform_system == 'Linux' | nvidia-cusparselt-cu13==0.8.0; platform_system == 'Linux' | nvidia-nccl-cu13==2.27.7; platform_system == 'Linux' | nvidia-nvshmem-cu13==3.3.24; platform_system == 'Linux' | nvidia-nvtx==13.0.39; platform_system == 'Linux' | nvidia-nvjitlink==13.0.39; platform_system == 'Linux' | nvidia-cufile==1.15.0.42; platform_system == 'Linux'
|
|
timeout-minutes: 420
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
manywheel-py3_14t-cuda-aarch64-13_0-upload: # Uploading
|
|
if: ${{ github.repository_owner == 'pytorch' }}
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: manywheel-py3_14t-cuda-aarch64-13_0-build
|
|
with:
|
|
PYTORCH_ROOT: /pytorch
|
|
PACKAGE_TYPE: manywheel
|
|
# TODO: This is a legacy variable that we eventually want to get rid of in
|
|
# favor of GPU_ARCH_VERSION
|
|
DESIRED_CUDA: cu130
|
|
GPU_ARCH_VERSION: "13.0-aarch64"
|
|
GPU_ARCH_TYPE: cuda-aarch64
|
|
DOCKER_IMAGE: manylinuxaarch64-builder
|
|
DOCKER_IMAGE_TAG_PREFIX: cuda13.0
|
|
DESIRED_PYTHON: "3.14t"
|
|
build_name: manywheel-py3_14t-cuda-aarch64-13_0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
uses: ./.github/workflows/_binary-upload.yml
|