Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/validate-aarch64-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
package-type: wheel
os: linux-aarch64
channel: ${{ inputs.channel }}
test-infra-ref: release/2.14
with-cuda: enable
with-cpu: enable
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
Expand All @@ -110,7 +111,7 @@ jobs:
with:
runner: ${{ matrix.validation_runner }}
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: ${{ matrix.build_name }}
docker-image: ${{ matrix.container_image }}
binary-matrix: ${{ toJSON(matrix) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
runner: ${{ matrix.validation_runner }}
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: cuda${{ matrix.cuda }}-cudnn${{ matrix.cudnn_version }}-${{ matrix.image_type }}
binary-matrix: ${{ toJSON(matrix) }}
docker-image: ${{matrix.docker}}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/validate-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ jobs:
package-type: wheel,libtorch
os: linux
channel: ${{ inputs.channel }}
test-infra-ref: release/2.14
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
with-xpu: enable

Expand All @@ -119,7 +120,7 @@ jobs:
with:
runner: ${{ matrix.validation_runner }}
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: ${{ matrix.build_name }}
# ROCm validates on the regular almalinux image (like CUDA) to confirm
# the wheels are self-contained. Only XPU still needs its own container.
Expand All @@ -145,7 +146,7 @@ jobs:

# Validate binaries. Poetry-based validation now lives in the
# standalone linux-poetry job below so Poetry's own ecosystem
# churn (it was previously installed from poetry@release/2.14) cannot
# churn (it was previously installed from poetry@main) cannot
# flake the binary matrix.
source ../../test-infra/.github/scripts/validate_binaries.sh

Expand All @@ -156,7 +157,7 @@ jobs:
with:
runner: "linux.g5.4xlarge.nvidia.gpu"
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: "poetry-test"
docker-image: 'pytorch/almalinux-builder:cpu-main'
docker-build-dir: "skip-docker-build"
Expand Down Expand Up @@ -185,7 +186,7 @@ jobs:
with:
runner: "linux.g5.4xlarge.nvidia.gpu"
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: "amazon-linux-2023-test"
docker-image: 'almalinux/9-base'
docker-build-dir: "skip-docker-build"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate-macos-arm64-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
package-type: wheel,libtorch # We stopped producing conda nightlies
os: macos-arm64
channel: ${{ inputs.channel }}
test-infra-ref: release/2.14
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}

macos-arm64:
Expand All @@ -108,7 +109,7 @@ jobs:
with:
runner: ${{ matrix.validation_runner }}
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: ${{ matrix.build_name }}
binary-matrix: ${{ toJSON(matrix) }}
script: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate-windows-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
package-type: wheel,libtorch # We stopped producing conda nightlies
os: windows
channel: ${{ inputs.channel }}
test-infra-ref: release/2.14
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
with-xpu: enable

Expand All @@ -109,7 +110,7 @@ jobs:
with:
runner: ${{ matrix.package_type == 'libtorch' && 'windows.4xlarge' || matrix.validation_runner }}
repository: "pytorch/pytorch"
ref: main
ref: release/2.14
job-name: ${{ matrix.build_name }}
binary-matrix: ${{ toJSON(matrix) }}
timeout: 60
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@


CURRENT_NIGHTLY_VERSION = "2.14.0"
CURRENT_CANDIDATE_VERSION = "2.13.0"
CURRENT_CANDIDATE_VERSION = "2.14.0"
CURRENT_STABLE_VERSION = "2.13.0"
CURRENT_VERSION = CURRENT_STABLE_VERSION

Expand Down
Loading