mirror of
https://github.com/pytorch/pytorch.git
synced 2025-11-06 09:17:11 +08:00
Compare commits
9 Commits
main-enabl
...
v1.12.0-rc
| Author | SHA1 | Date | |
|---|---|---|---|
| 919b53c5e7 | |||
| 2ad18abc49 | |||
| 9596b999f8 | |||
| baabb4cb96 | |||
| 906a6e1df9 | |||
| 974f7f8080 | |||
| 8abf37d74e | |||
| 8ff2bc0c01 | |||
| a119b7f6d4 |
@ -62,7 +62,7 @@ git --no-pager log --max-count 1
|
|||||||
popd
|
popd
|
||||||
|
|
||||||
# Clone the Builder master repo
|
# Clone the Builder master repo
|
||||||
retry git clone -q https://github.com/pytorch/builder.git "$BUILDER_ROOT"
|
retry git clone -q https://github.com/pytorch/builder.git -b release/1.12 "$BUILDER_ROOT"
|
||||||
pushd "$BUILDER_ROOT"
|
pushd "$BUILDER_ROOT"
|
||||||
echo "Using builder from "
|
echo "Using builder from "
|
||||||
git --no-pager log --max-count 1
|
git --no-pager log --max-count 1
|
||||||
|
|||||||
2
.github/templates/common.yml.j2
vendored
2
.github/templates/common.yml.j2
vendored
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
# NOTE: If testing pytorch/builder changes you can change this variable to change what pytorch/builder reference
|
# NOTE: If testing pytorch/builder changes you can change this variable to change what pytorch/builder reference
|
||||||
# the binary builds will check out
|
# the binary builds will check out
|
||||||
{%- set builder_branch = "main" -%}
|
{%- set builder_branch = "release/1.12" -%}
|
||||||
|
|
||||||
{%- macro concurrency(build_environment) -%}
|
{%- macro concurrency(build_environment) -%}
|
||||||
concurrency:
|
concurrency:
|
||||||
|
|||||||
@ -57,8 +57,8 @@ jobs:
|
|||||||
!{{ upload.binary_env(config) }}
|
!{{ upload.binary_env(config) }}
|
||||||
steps:
|
steps:
|
||||||
!{{ common.setup_ec2_linux() }}
|
!{{ common.setup_ec2_linux() }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }}
|
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch, checkout_pr_head=False) }}
|
||||||
{%- if config["gpu_arch_type"] == 'cuda' and config["gpu_arch_version"].startswith('11') %}
|
{%- if config["gpu_arch_type"] == 'cuda' and config["gpu_arch_version"].startswith('11') %}
|
||||||
- name: Set BUILD_SPLIT_CUDA
|
- name: Set BUILD_SPLIT_CUDA
|
||||||
run: |
|
run: |
|
||||||
@ -130,8 +130,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: !{{ config["build_name"] }}
|
name: !{{ config["build_name"] }}
|
||||||
path: "${{ runner.temp }}/artifacts/"
|
path: "${{ runner.temp }}/artifacts/"
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }}
|
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch, checkout_pr_head=False) }}
|
||||||
{%- if config["gpu_arch_type"] == "rocm" %}
|
{%- if config["gpu_arch_type"] == "rocm" %}
|
||||||
- name: ROCm set GPU_FLAG
|
- name: ROCm set GPU_FLAG
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@ -85,8 +85,8 @@ jobs:
|
|||||||
chmod +x "${RUNNER_TEMP}/conda.sh"
|
chmod +x "${RUNNER_TEMP}/conda.sh"
|
||||||
/bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
|
/bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
|
||||||
echo "${RUNNER_TEMP}/anaconda/bin" >> "${GITHUB_PATH}"
|
echo "${RUNNER_TEMP}/anaconda/bin" >> "${GITHUB_PATH}"
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }}
|
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch, checkout_pr_head=False) }}
|
||||||
- name: Install sccache (only for non-forked PRs, and pushes to trunk)
|
- name: Install sccache (only for non-forked PRs, and pushes to trunk)
|
||||||
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }}
|
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }}
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@ -66,8 +66,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
!{{ common.setup_ec2_windows() }}
|
!{{ common.setup_ec2_windows() }}
|
||||||
!{{ set_runner_specific_vars() }}
|
!{{ set_runner_specific_vars() }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }}
|
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch, checkout_pr_head=False) }}
|
||||||
- name: Populate binary env
|
- name: Populate binary env
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
@ -102,8 +102,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: !{{ config["build_name"] }}
|
name: !{{ config["build_name"] }}
|
||||||
path: "${{ env.PYTORCH_FINAL_PACKAGE_DIR }}"
|
path: "${{ env.PYTORCH_FINAL_PACKAGE_DIR }}"
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }}
|
!{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch, checkout_pr_head=False) }}
|
||||||
- name: Populate binary env
|
- name: Populate binary env
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
96
.github/workflows/generated-linux-binary-conda-nightly.yml
generated
vendored
96
.github/workflows/generated-linux-binary-conda-nightly.yml
generated
vendored
@ -77,7 +77,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -88,7 +87,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -206,7 +205,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -217,7 +215,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -413,7 +411,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -424,7 +421,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -543,7 +540,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -554,7 +550,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -762,7 +758,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -773,7 +768,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -895,7 +890,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -906,7 +900,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1114,7 +1108,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1125,7 +1118,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1247,7 +1240,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1258,7 +1250,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1465,7 +1457,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1476,7 +1467,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1594,7 +1585,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1605,7 +1595,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1801,7 +1791,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1812,7 +1801,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1931,7 +1920,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1942,7 +1930,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2150,7 +2138,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2161,7 +2148,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2283,7 +2270,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2294,7 +2280,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2502,7 +2488,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2513,7 +2498,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2635,7 +2620,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2646,7 +2630,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2853,7 +2837,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2864,7 +2847,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2982,7 +2965,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2993,7 +2975,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3189,7 +3171,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3200,7 +3181,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3319,7 +3300,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3330,7 +3310,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3538,7 +3518,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3549,7 +3528,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3671,7 +3650,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3682,7 +3660,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3890,7 +3868,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3901,7 +3878,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4023,7 +4000,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4034,7 +4010,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4241,7 +4217,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4252,7 +4227,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4370,7 +4345,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4381,7 +4355,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4577,7 +4551,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4588,7 +4561,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4707,7 +4680,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4718,7 +4690,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4926,7 +4898,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4937,7 +4908,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5059,7 +5030,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5070,7 +5040,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5278,7 +5248,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5289,7 +5258,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5411,7 +5380,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5422,7 +5390,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml
generated
vendored
6
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml
generated
vendored
@ -74,7 +74,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -85,7 +84,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -204,7 +203,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -215,7 +213,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
120
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
120
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
@ -78,7 +78,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -89,7 +88,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -208,7 +207,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -219,7 +217,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -416,7 +414,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -427,7 +424,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -546,7 +543,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -557,7 +553,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -754,7 +750,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -765,7 +760,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -884,7 +879,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -895,7 +889,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1092,7 +1086,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1103,7 +1096,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1222,7 +1215,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1233,7 +1225,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1431,7 +1423,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1442,7 +1433,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1562,7 +1553,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1573,7 +1563,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1783,7 +1773,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1794,7 +1783,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1914,7 +1903,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1925,7 +1913,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2135,7 +2123,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2146,7 +2133,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2266,7 +2253,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2277,7 +2263,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2487,7 +2473,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2498,7 +2483,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2618,7 +2603,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2629,7 +2613,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2839,7 +2823,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2850,7 +2833,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2973,7 +2956,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2984,7 +2966,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3194,7 +3176,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3205,7 +3186,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3328,7 +3309,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3339,7 +3319,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3549,7 +3529,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3560,7 +3539,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3683,7 +3662,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3694,7 +3672,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3904,7 +3882,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3915,7 +3892,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4038,7 +4015,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4049,7 +4025,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4259,7 +4235,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4270,7 +4245,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4393,7 +4368,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4404,7 +4378,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4614,7 +4588,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4625,7 +4598,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4748,7 +4721,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4759,7 +4731,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4969,7 +4941,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4980,7 +4951,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5103,7 +5074,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5114,7 +5084,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5324,7 +5294,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5335,7 +5304,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5458,7 +5427,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5469,7 +5437,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5679,7 +5647,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5690,7 +5657,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5826,7 +5793,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5837,7 +5803,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6029,7 +5995,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6040,7 +6005,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6176,7 +6141,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6187,7 +6151,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6379,7 +6343,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6390,7 +6353,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6526,7 +6489,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6537,7 +6499,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6729,7 +6691,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6740,7 +6701,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6876,7 +6837,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6887,7 +6847,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml
generated
vendored
6
.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml
generated
vendored
@ -74,7 +74,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -85,7 +84,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -204,7 +203,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -215,7 +213,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
120
.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml
generated
vendored
120
.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml
generated
vendored
@ -78,7 +78,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -89,7 +88,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -208,7 +207,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -219,7 +217,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -416,7 +414,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -427,7 +424,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -546,7 +543,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -557,7 +553,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -754,7 +750,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -765,7 +760,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -884,7 +879,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -895,7 +889,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1092,7 +1086,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1103,7 +1096,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1222,7 +1215,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1233,7 +1225,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1431,7 +1423,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1442,7 +1433,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1562,7 +1553,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1573,7 +1563,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1783,7 +1773,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1794,7 +1783,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1914,7 +1903,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1925,7 +1913,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2135,7 +2123,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2146,7 +2133,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2266,7 +2253,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2277,7 +2263,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2487,7 +2473,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2498,7 +2483,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2618,7 +2603,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2629,7 +2613,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2839,7 +2823,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2850,7 +2833,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2973,7 +2956,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2984,7 +2966,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3194,7 +3176,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3205,7 +3186,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3328,7 +3309,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3339,7 +3319,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3549,7 +3529,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3560,7 +3539,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3683,7 +3662,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3694,7 +3672,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3904,7 +3882,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3915,7 +3892,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4038,7 +4015,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4049,7 +4025,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4259,7 +4235,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4270,7 +4245,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4393,7 +4368,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4404,7 +4378,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4614,7 +4588,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4625,7 +4598,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4748,7 +4721,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4759,7 +4731,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4969,7 +4941,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4980,7 +4951,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5103,7 +5074,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5114,7 +5084,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5324,7 +5294,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5335,7 +5304,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5458,7 +5427,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5469,7 +5437,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5679,7 +5647,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5690,7 +5657,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5826,7 +5793,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5837,7 +5803,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6029,7 +5995,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6040,7 +6005,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6176,7 +6141,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6187,7 +6151,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6379,7 +6343,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6390,7 +6353,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6526,7 +6489,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6537,7 +6499,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6729,7 +6691,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6740,7 +6701,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6876,7 +6837,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6887,7 +6847,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-linux-binary-manywheel-master.yml
generated
vendored
6
.github/workflows/generated-linux-binary-manywheel-master.yml
generated
vendored
@ -74,7 +74,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -85,7 +84,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -204,7 +203,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -215,7 +213,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
144
.github/workflows/generated-linux-binary-manywheel-nightly.yml
generated
vendored
144
.github/workflows/generated-linux-binary-manywheel-nightly.yml
generated
vendored
@ -77,7 +77,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -88,7 +87,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -206,7 +205,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -217,7 +215,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -413,7 +411,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -424,7 +421,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -543,7 +540,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -554,7 +550,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -762,7 +758,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -773,7 +768,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -895,7 +890,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -906,7 +900,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1114,7 +1108,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1125,7 +1118,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1247,7 +1240,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1258,7 +1250,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1466,7 +1458,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1477,7 +1468,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1612,7 +1603,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1623,7 +1613,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1813,7 +1803,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1824,7 +1813,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1959,7 +1948,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1970,7 +1958,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2159,7 +2147,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2170,7 +2157,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2288,7 +2275,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2299,7 +2285,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2495,7 +2481,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2506,7 +2491,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2625,7 +2610,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2636,7 +2620,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2844,7 +2828,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2855,7 +2838,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2977,7 +2960,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2988,7 +2970,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3196,7 +3178,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3207,7 +3188,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3329,7 +3310,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3340,7 +3320,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3548,7 +3528,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3559,7 +3538,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3694,7 +3673,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3705,7 +3683,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3895,7 +3873,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3906,7 +3883,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4041,7 +4018,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4052,7 +4028,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4241,7 +4217,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4252,7 +4227,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4370,7 +4345,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4381,7 +4355,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4577,7 +4551,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4588,7 +4561,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4707,7 +4680,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4718,7 +4690,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -4926,7 +4898,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -4937,7 +4908,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5059,7 +5030,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5070,7 +5040,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5278,7 +5248,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5289,7 +5258,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5411,7 +5380,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5422,7 +5390,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5630,7 +5598,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5641,7 +5608,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5776,7 +5743,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5787,7 +5753,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -5977,7 +5943,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -5988,7 +5953,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6123,7 +6088,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6134,7 +6098,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6323,7 +6287,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6334,7 +6297,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6452,7 +6415,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6463,7 +6425,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6659,7 +6621,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6670,7 +6631,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -6789,7 +6750,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -6800,7 +6760,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7008,7 +6968,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7019,7 +6978,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7141,7 +7100,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7152,7 +7110,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7360,7 +7318,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7371,7 +7328,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7493,7 +7450,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7504,7 +7460,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7712,7 +7668,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7723,7 +7678,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -7858,7 +7813,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -7869,7 +7823,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -8059,7 +8013,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -8070,7 +8023,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -8205,7 +8158,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -8216,7 +8168,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
9
.github/workflows/generated-macos-arm64-binary-conda-nightly.yml
generated
vendored
9
.github/workflows/generated-macos-arm64-binary-conda-nightly.yml
generated
vendored
@ -77,7 +77,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -88,7 +87,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -252,7 +251,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -263,7 +261,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -427,7 +425,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -438,7 +435,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
12
.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml
generated
vendored
12
.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml
generated
vendored
@ -77,7 +77,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -88,7 +87,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -252,7 +251,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -263,7 +261,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -427,7 +425,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -438,7 +435,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -602,7 +599,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -613,7 +609,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
12
.github/workflows/generated-macos-binary-conda-nightly.yml
generated
vendored
12
.github/workflows/generated-macos-binary-conda-nightly.yml
generated
vendored
@ -75,7 +75,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -86,7 +85,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -250,7 +249,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -261,7 +259,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -425,7 +423,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -436,7 +433,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -600,7 +597,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -611,7 +607,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
12
.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
12
.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
@ -80,7 +80,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -91,7 +90,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -261,7 +260,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -272,7 +270,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -442,7 +440,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -453,7 +450,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -623,7 +620,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -634,7 +630,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
12
.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml
generated
vendored
12
.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml
generated
vendored
@ -80,7 +80,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -91,7 +90,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -261,7 +260,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -272,7 +270,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -442,7 +440,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -453,7 +450,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -623,7 +620,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -634,7 +630,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
12
.github/workflows/generated-macos-binary-wheel-nightly.yml
generated
vendored
12
.github/workflows/generated-macos-binary-wheel-nightly.yml
generated
vendored
@ -75,7 +75,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -86,7 +85,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -250,7 +249,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -261,7 +259,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -425,7 +423,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -436,7 +433,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -600,7 +597,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -611,7 +607,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
72
.github/workflows/generated-windows-binary-conda-nightly.yml
generated
vendored
72
.github/workflows/generated-windows-binary-conda-nightly.yml
generated
vendored
@ -91,7 +91,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -102,7 +101,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -200,7 +199,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -211,7 +209,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -390,7 +388,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -401,7 +398,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -500,7 +497,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -511,7 +507,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -691,7 +687,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -702,7 +697,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -801,7 +796,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -812,7 +806,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -991,7 +985,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1002,7 +995,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1100,7 +1093,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1111,7 +1103,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1290,7 +1282,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1301,7 +1292,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1400,7 +1391,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1411,7 +1401,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1591,7 +1581,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1602,7 +1591,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1701,7 +1690,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1712,7 +1700,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1891,7 +1879,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1902,7 +1889,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2000,7 +1987,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2011,7 +1997,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2190,7 +2176,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2201,7 +2186,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2300,7 +2285,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2311,7 +2295,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2491,7 +2475,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2502,7 +2485,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2601,7 +2584,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2612,7 +2594,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2791,7 +2773,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2802,7 +2783,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2900,7 +2881,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2911,7 +2891,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3090,7 +3070,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3101,7 +3080,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3200,7 +3179,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3211,7 +3189,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3391,7 +3369,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3402,7 +3379,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3501,7 +3478,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3512,7 +3488,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-windows-binary-libtorch-debug-master.yml
generated
vendored
6
.github/workflows/generated-windows-binary-libtorch-debug-master.yml
generated
vendored
@ -91,7 +91,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -102,7 +101,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -204,7 +203,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -215,7 +213,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
72
.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml
generated
vendored
72
.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml
generated
vendored
@ -95,7 +95,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -106,7 +105,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -208,7 +207,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -219,7 +217,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -405,7 +403,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -416,7 +413,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -518,7 +515,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -529,7 +525,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -715,7 +711,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -726,7 +721,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -828,7 +823,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -839,7 +833,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1025,7 +1019,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1036,7 +1029,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1138,7 +1131,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1149,7 +1141,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1336,7 +1328,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1347,7 +1338,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1450,7 +1441,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1461,7 +1451,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1649,7 +1639,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1660,7 +1649,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1763,7 +1752,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1774,7 +1762,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1962,7 +1950,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1973,7 +1960,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2076,7 +2063,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2087,7 +2073,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2275,7 +2261,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2286,7 +2271,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2389,7 +2374,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2400,7 +2384,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2588,7 +2572,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2599,7 +2582,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2702,7 +2685,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2713,7 +2695,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2901,7 +2883,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2912,7 +2893,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3015,7 +2996,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3026,7 +3006,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3214,7 +3194,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3225,7 +3204,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3328,7 +3307,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3339,7 +3317,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3527,7 +3505,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3538,7 +3515,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3641,7 +3618,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3652,7 +3628,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-windows-binary-libtorch-release-master.yml
generated
vendored
6
.github/workflows/generated-windows-binary-libtorch-release-master.yml
generated
vendored
@ -91,7 +91,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -102,7 +101,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -204,7 +203,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -215,7 +213,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
72
.github/workflows/generated-windows-binary-libtorch-release-nightly.yml
generated
vendored
72
.github/workflows/generated-windows-binary-libtorch-release-nightly.yml
generated
vendored
@ -95,7 +95,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -106,7 +105,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -208,7 +207,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -219,7 +217,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -405,7 +403,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -416,7 +413,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -518,7 +515,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -529,7 +525,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -715,7 +711,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -726,7 +721,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -828,7 +823,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -839,7 +833,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1025,7 +1019,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1036,7 +1029,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1138,7 +1131,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1149,7 +1141,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1336,7 +1328,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1347,7 +1338,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1450,7 +1441,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1461,7 +1451,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1649,7 +1639,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1660,7 +1649,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1763,7 +1752,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1774,7 +1762,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1962,7 +1950,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1973,7 +1960,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2076,7 +2063,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2087,7 +2073,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2275,7 +2261,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2286,7 +2271,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2389,7 +2374,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2400,7 +2384,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2588,7 +2572,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2599,7 +2582,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2702,7 +2685,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2713,7 +2695,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2901,7 +2883,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2912,7 +2893,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3015,7 +2996,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3026,7 +3006,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3214,7 +3194,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3225,7 +3204,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3328,7 +3307,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3339,7 +3317,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3527,7 +3505,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3538,7 +3515,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3641,7 +3618,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3652,7 +3628,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
6
.github/workflows/generated-windows-binary-wheel-master.yml
generated
vendored
6
.github/workflows/generated-windows-binary-wheel-master.yml
generated
vendored
@ -88,7 +88,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -99,7 +98,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -198,7 +197,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -209,7 +207,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
72
.github/workflows/generated-windows-binary-wheel-nightly.yml
generated
vendored
72
.github/workflows/generated-windows-binary-wheel-nightly.yml
generated
vendored
@ -91,7 +91,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -102,7 +101,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -200,7 +199,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -211,7 +209,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -390,7 +388,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -401,7 +398,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -500,7 +497,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -511,7 +507,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -691,7 +687,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -702,7 +697,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -801,7 +796,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -812,7 +806,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -991,7 +985,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1002,7 +995,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1100,7 +1093,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1111,7 +1103,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1290,7 +1282,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1301,7 +1292,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1400,7 +1391,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1411,7 +1401,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1591,7 +1581,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1602,7 +1591,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1701,7 +1690,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1712,7 +1700,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -1891,7 +1879,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -1902,7 +1889,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2000,7 +1987,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2011,7 +1997,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2190,7 +2176,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2201,7 +2186,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2300,7 +2285,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2311,7 +2295,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2491,7 +2475,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2502,7 +2485,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2601,7 +2584,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2612,7 +2594,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2791,7 +2773,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2802,7 +2783,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -2900,7 +2881,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -2911,7 +2891,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3090,7 +3070,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3101,7 +3080,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3200,7 +3179,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3211,7 +3189,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3391,7 +3369,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3402,7 +3379,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
@ -3501,7 +3478,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
- name: Clean PyTorch checkout
|
- name: Clean PyTorch checkout
|
||||||
@ -3512,7 +3488,7 @@ jobs:
|
|||||||
- name: Checkout pytorch/builder
|
- name: Checkout pytorch/builder
|
||||||
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: release/1.12
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
repository: pytorch/builder
|
repository: pytorch/builder
|
||||||
path: builder
|
path: builder
|
||||||
|
|||||||
@ -99,6 +99,6 @@ function checkout_install_torchvision() {
|
|||||||
|
|
||||||
function clone_pytorch_xla() {
|
function clone_pytorch_xla() {
|
||||||
if [[ ! -d ./xla ]]; then
|
if [[ ! -d ./xla ]]; then
|
||||||
git clone --recursive --quiet https://github.com/pytorch/xla.git
|
git clone --recursive -b release/1.12 https://github.com/pytorch/xla.git
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,4 +28,24 @@ time python test/run_test.py --verbose -i distributed/test_c10d_spawn_nccl
|
|||||||
time python test/run_test.py --verbose -i distributed/test_store
|
time python test/run_test.py --verbose -i distributed/test_store
|
||||||
time python test/run_test.py --verbose -i distributed/test_pg_wrapper
|
time python test/run_test.py --verbose -i distributed/test_pg_wrapper
|
||||||
time python test/run_test.py --verbose -i distributed/rpc/cuda/test_tensorpipe_agent
|
time python test/run_test.py --verbose -i distributed/rpc/cuda/test_tensorpipe_agent
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/checkpoint/test_checkpoint
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/checkpoint/test_file_system_checkpoint
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharding_spec/test_sharding_spec
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharding_plan/test_sharding_plan
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/test_megatron_prototype
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/test_sharded_tensor
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/test_sharded_tensor_reshard
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_chunk
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_elementwise_ops
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_embedding
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_embedding_bag
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_binary_cmp
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_init
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_linear
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_math_ops
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_matrix_ops
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/ops/test_softmax
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/sharded_optim/test_sharded_optim
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/test_partial_tensor
|
||||||
|
time python test/run_test.py --verbose -i distributed/_shard/test_replicated_tensor
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
|
|||||||
@ -460,7 +460,7 @@ test_forward_backward_compatibility() {
|
|||||||
python -m venv venv
|
python -m venv venv
|
||||||
# shellcheck disable=SC1091
|
# shellcheck disable=SC1091
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
pip_install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
|
pip_install --pre torch -f https://download.pytorch.org/whl/test/cpu/torch_test.html
|
||||||
pip show torch
|
pip show torch
|
||||||
python dump_all_function_schemas.py --filename nightly_schemas.txt
|
python dump_all_function_schemas.py --filename nightly_schemas.txt
|
||||||
# FC: verify newmodel can be load with old code.
|
# FC: verify newmodel can be load with old code.
|
||||||
|
|||||||
@ -20,8 +20,8 @@ MPSDevice::~MPSDevice() {
|
|||||||
_mtl_device = nil;
|
_mtl_device = nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
MPSDevice::MPSDevice() {
|
MPSDevice::MPSDevice(): _mtl_device(nil) {
|
||||||
NSArray* devices = MTLCopyAllDevices();
|
NSArray* devices = [MTLCopyAllDevices() autorelease];
|
||||||
for (unsigned long i = 0 ; i < [devices count] ; i++) {
|
for (unsigned long i = 0 ; i < [devices count] ; i++) {
|
||||||
id<MTLDevice> device = devices[i];
|
id<MTLDevice> device = devices[i];
|
||||||
if(![device isLowPower]) { // exclude Intel GPUs
|
if(![device isLowPower]) { // exclude Intel GPUs
|
||||||
|
|||||||
@ -260,9 +260,9 @@ void printTensorNDArray(const Tensor& t) {
|
|||||||
|
|
||||||
// Initialize data
|
// Initialize data
|
||||||
id<MTLBuffer> selfBuf = __builtin_bit_cast(id<MTLBuffer>, t.storage().data());
|
id<MTLBuffer> selfBuf = __builtin_bit_cast(id<MTLBuffer>, t.storage().data());
|
||||||
MPSGraphTensorData* tdata = [[MPSGraphTensorData alloc] initWithMTLBuffer:selfBuf
|
MPSGraphTensorData* tdata = [[[MPSGraphTensorData alloc] initWithMTLBuffer:selfBuf
|
||||||
shape:selfShape
|
shape:selfShape
|
||||||
dataType:selfDType];
|
dataType:selfDType] autorelease];
|
||||||
[tdata printNDArray];
|
[tdata printNDArray];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,13 +294,13 @@ id<MTLBuffer> gatherViewTensor(const at::Tensor& src, id<MTLBuffer> sourceBuffer
|
|||||||
kMPS,
|
kMPS,
|
||||||
c10::nullopt,
|
c10::nullopt,
|
||||||
c10::nullopt);
|
c10::nullopt);
|
||||||
MPSGraphTensorData* inputTensorData = [[MPSGraphTensorData alloc] initWithMTLBuffer: sourceBuffer
|
MPSGraphTensorData* inputTensorData = [[[MPSGraphTensorData alloc] initWithMTLBuffer: sourceBuffer
|
||||||
shape: [inputTensor shape]
|
shape: [inputTensor shape]
|
||||||
dataType: [inputTensor dataType]];
|
dataType: [inputTensor dataType]] autorelease];
|
||||||
id<MTLBuffer> resultBuffer = __builtin_bit_cast(id<MTLBuffer>, output.storage().data());
|
id<MTLBuffer> resultBuffer = __builtin_bit_cast(id<MTLBuffer>, output.storage().data());
|
||||||
MPSGraphTensorData* outputTensorData = [[MPSGraphTensorData alloc] initWithMTLBuffer: resultBuffer
|
MPSGraphTensorData* outputTensorData = [[[MPSGraphTensorData alloc] initWithMTLBuffer: resultBuffer
|
||||||
shape: getMPSShape(src.sizes())
|
shape: getMPSShape(src.sizes())
|
||||||
dataType: getMPSDataType(src.scalar_type())];
|
dataType: getMPSDataType(src.scalar_type())] autorelease];
|
||||||
NSDictionary<MPSGraphTensor*, MPSGraphTensorData*>* feeds = @{
|
NSDictionary<MPSGraphTensor*, MPSGraphTensorData*>* feeds = @{
|
||||||
inputTensor : inputTensorData
|
inputTensor : inputTensorData
|
||||||
};
|
};
|
||||||
@ -347,9 +347,9 @@ Placeholder::Placeholder(MPSGraphTensor* mpsGraphTensor, const Tensor& src,
|
|||||||
if (!mpsShape)
|
if (!mpsShape)
|
||||||
mpsShape = getMPSShape(src_);
|
mpsShape = getMPSShape(src_);
|
||||||
|
|
||||||
_value = [[MPSGraphTensorData alloc] initWithMTLBuffer:srcBuf
|
_value = [[[MPSGraphTensorData alloc] initWithMTLBuffer:srcBuf
|
||||||
shape:mpsShape
|
shape:mpsShape
|
||||||
dataType:mpsDataType];
|
dataType:mpsDataType] autorelease];
|
||||||
TORCH_INTERNAL_ASSERT(_value);
|
TORCH_INTERNAL_ASSERT(_value);
|
||||||
_placeholder = mpsGraphTensor;
|
_placeholder = mpsGraphTensor;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -132,7 +132,7 @@ Tensor _mps_convolution(
|
|||||||
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
||||||
newCachedGraph = new CachedGraph(mpsGraph);
|
newCachedGraph = new CachedGraph(mpsGraph);
|
||||||
|
|
||||||
MPSGraphConvolution2DOpDescriptor *descriptor_ = [MPSGraphConvolution2DOpDescriptor new];
|
MPSGraphConvolution2DOpDescriptor *descriptor_ = [[MPSGraphConvolution2DOpDescriptor new] autorelease];
|
||||||
fill_conv_desc(descriptor_, stride[0], stride[1],
|
fill_conv_desc(descriptor_, stride[0], stride[1],
|
||||||
dilation[0], dilation[1],
|
dilation[0], dilation[1],
|
||||||
padding[1], padding[0],
|
padding[1], padding[0],
|
||||||
@ -173,7 +173,7 @@ Tensor _mps_convolution(
|
|||||||
biasPlaceholder = native_mps::Placeholder(cachedGraph->biasTensor_, (bias_opt.value()).view({1, bias_shape[0], 1, 1}));
|
biasPlaceholder = native_mps::Placeholder(cachedGraph->biasTensor_, (bias_opt.value()).view({1, bias_shape[0], 1, 1}));
|
||||||
auto outputPlaceholder = native_mps::Placeholder(cachedGraph->outputTensor_, *output);
|
auto outputPlaceholder = native_mps::Placeholder(cachedGraph->outputTensor_, *output);
|
||||||
|
|
||||||
NSMutableDictionary<MPSGraphTensor*, MPSGraphTensorData*>* feeds = [[NSMutableDictionary alloc] initWithCapacity: 3];
|
NSMutableDictionary<MPSGraphTensor*, MPSGraphTensorData*>* feeds = [[[NSMutableDictionary alloc] initWithCapacity: 3] autorelease];
|
||||||
feeds[inputPlaceholder.getMPSGraphTensor()] = inputPlaceholder.getMPSGraphTensorData();
|
feeds[inputPlaceholder.getMPSGraphTensor()] = inputPlaceholder.getMPSGraphTensorData();
|
||||||
feeds[weightsPlaceholder.getMPSGraphTensor()] = weightsPlaceholder.getMPSGraphTensorData();
|
feeds[weightsPlaceholder.getMPSGraphTensor()] = weightsPlaceholder.getMPSGraphTensorData();
|
||||||
if(bias_defined) {
|
if(bias_defined) {
|
||||||
@ -262,7 +262,7 @@ Tensor mps_convolution_backward_input(
|
|||||||
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
||||||
newCachedGraph = new CachedGraph(mpsGraph);
|
newCachedGraph = new CachedGraph(mpsGraph);
|
||||||
|
|
||||||
MPSGraphConvolution2DOpDescriptor *descriptor_ = [MPSGraphConvolution2DOpDescriptor new];
|
MPSGraphConvolution2DOpDescriptor *descriptor_ = [[MPSGraphConvolution2DOpDescriptor new] autorelease];
|
||||||
fill_conv_desc(descriptor_, stride[0], stride[1],
|
fill_conv_desc(descriptor_, stride[0], stride[1],
|
||||||
dilation[0], dilation[1],
|
dilation[0], dilation[1],
|
||||||
padding[1], padding[0],
|
padding[1], padding[0],
|
||||||
@ -373,7 +373,7 @@ Tensor mps_convolution_backward_weights(
|
|||||||
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
MPSGraph* mpsGraph = native_mps::make_mps_graph();
|
||||||
newCachedGraph = new CachedGraph(mpsGraph);
|
newCachedGraph = new CachedGraph(mpsGraph);
|
||||||
|
|
||||||
MPSGraphConvolution2DOpDescriptor *descriptor_ = [MPSGraphConvolution2DOpDescriptor new];
|
MPSGraphConvolution2DOpDescriptor *descriptor_ = [[MPSGraphConvolution2DOpDescriptor new] autorelease];
|
||||||
fill_conv_desc(descriptor_, stride[0], stride[1],
|
fill_conv_desc(descriptor_, stride[0], stride[1],
|
||||||
dilation[0], dilation[1],
|
dilation[0], dilation[1],
|
||||||
padding[1], padding[0],
|
padding[1], padding[0],
|
||||||
|
|||||||
@ -608,7 +608,6 @@ Utilities
|
|||||||
get_float32_matmul_precision
|
get_float32_matmul_precision
|
||||||
set_warn_always
|
set_warn_always
|
||||||
is_warn_always_enabled
|
is_warn_always_enabled
|
||||||
vmap
|
|
||||||
_assert
|
_assert
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -101,8 +101,8 @@ class TestShardedTensorMatrixOps(ShardedTensorTestBase):
|
|||||||
enumerable_spec, 10, 10, init_rrefs=False, dtype=torch.double
|
enumerable_spec, 10, 10, init_rrefs=False, dtype=torch.double
|
||||||
)
|
)
|
||||||
with self.assertRaisesRegex(
|
with self.assertRaisesRegex(
|
||||||
NotImplementedError,
|
RuntimeError,
|
||||||
"Only ChunkShardingSpec supported for 'transpose'",
|
"not supported",
|
||||||
):
|
):
|
||||||
st.transpose(1, 0)
|
st.transpose(1, 0)
|
||||||
|
|
||||||
|
|||||||
@ -19,7 +19,7 @@ from torch.distributed._shard.api import (
|
|||||||
_reshard_output,
|
_reshard_output,
|
||||||
)
|
)
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
sharded_op_impl,
|
custom_sharded_op_impl,
|
||||||
pre_load_state_dict_hook,
|
pre_load_state_dict_hook,
|
||||||
state_dict_hook,
|
state_dict_hook,
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
@ -174,7 +174,7 @@ class TestShardParameter(ShardedTensorTestBase):
|
|||||||
with self.assertRaisesRegex(ValueError, 'does not match with src_rank'):
|
with self.assertRaisesRegex(ValueError, 'does not match with src_rank'):
|
||||||
shard_parameter(fc, 'weight', spec, src_rank=self.rank)
|
shard_parameter(fc, 'weight', spec, src_rank=self.rank)
|
||||||
|
|
||||||
with self.assertRaisesRegex(AttributeError, 'Linear have no attribute'):
|
with self.assertRaisesRegex(AttributeError, 'has no attribute'):
|
||||||
shard_parameter(fc, 'foo', spec)
|
shard_parameter(fc, 'foo', spec)
|
||||||
|
|
||||||
with self.assertRaisesRegex(ValueError, 'Expected Linear.bias to be a Tensor, but found str'):
|
with self.assertRaisesRegex(ValueError, 'Expected Linear.bias to be a Tensor, but found str'):
|
||||||
@ -2463,7 +2463,7 @@ class TestShardedTensorCustomOps(ShardedTensorTestBase):
|
|||||||
@requires_nccl()
|
@requires_nccl()
|
||||||
def test_custom_op(self):
|
def test_custom_op(self):
|
||||||
|
|
||||||
@sharded_op_impl(torch.asin)
|
@custom_sharded_op_impl(torch.asin)
|
||||||
def my_sharded_asin(types, args, kwargs, process_group):
|
def my_sharded_asin(types, args, kwargs, process_group):
|
||||||
return torch.asin(args[0].local_shards()[0].tensor)
|
return torch.asin(args[0].local_shards()[0].tensor)
|
||||||
|
|
||||||
@ -2491,7 +2491,7 @@ class TestShardedTensorCustomOps(ShardedTensorTestBase):
|
|||||||
from torch.distributed._shard.sharding_spec.api import custom_sharding_spec_op
|
from torch.distributed._shard.sharding_spec.api import custom_sharding_spec_op
|
||||||
|
|
||||||
@custom_sharding_spec_op(ChunkShardingSpec, torch.nn.functional.linear)
|
@custom_sharding_spec_op(ChunkShardingSpec, torch.nn.functional.linear)
|
||||||
def my_sharded_linear(types, args, kwargs):
|
def my_sharded_linear(types, args, kwargs, process_group):
|
||||||
return t
|
return t
|
||||||
|
|
||||||
spec = ChunkShardingSpec(
|
spec = ChunkShardingSpec(
|
||||||
@ -2515,12 +2515,12 @@ class TestShardedTensorCustomOps(ShardedTensorTestBase):
|
|||||||
def test_custom_op_errors(self):
|
def test_custom_op_errors(self):
|
||||||
|
|
||||||
with self.assertRaisesRegex(TypeError, 'expects signature'):
|
with self.assertRaisesRegex(TypeError, 'expects signature'):
|
||||||
@sharded_op_impl(torch.nn.functional.linear)
|
@custom_sharded_op_impl(torch.nn.functional.linear)
|
||||||
def my_op1(types, args, kwargs, process_group, random_param):
|
def my_op1(types, args, kwargs, process_group, random_param):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
with self.assertRaisesRegex(TypeError, 'expects signature'):
|
with self.assertRaisesRegex(TypeError, 'expects signature'):
|
||||||
@sharded_op_impl(torch.nn.functional.linear)
|
@custom_sharded_op_impl(torch.nn.functional.linear)
|
||||||
def my_op2(types):
|
def my_op2(types):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
@ -201,6 +201,8 @@ WINDOWS_BLOCKLIST = [
|
|||||||
"distributed/pipeline/sync/test_worker",
|
"distributed/pipeline/sync/test_worker",
|
||||||
"distributed/elastic/agent/server/test/api_test",
|
"distributed/elastic/agent/server/test/api_test",
|
||||||
"distributed/elastic/multiprocessing/api_test",
|
"distributed/elastic/multiprocessing/api_test",
|
||||||
|
"distributed/_shard/checkpoint/test_checkpoint"
|
||||||
|
"distributed/_shard/checkpoint/test_file_system_checkpoint"
|
||||||
"distributed/_shard/sharding_spec/test_sharding_spec",
|
"distributed/_shard/sharding_spec/test_sharding_spec",
|
||||||
"distributed/_shard/sharding_plan/test_sharding_plan",
|
"distributed/_shard/sharding_plan/test_sharding_plan",
|
||||||
"distributed/_shard/sharded_tensor/test_megatron_prototype",
|
"distributed/_shard/sharded_tensor/test_megatron_prototype",
|
||||||
@ -216,8 +218,6 @@ WINDOWS_BLOCKLIST = [
|
|||||||
"distributed/_shard/sharded_tensor/ops/test_math_ops",
|
"distributed/_shard/sharded_tensor/ops/test_math_ops",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_matrix_ops",
|
"distributed/_shard/sharded_tensor/ops/test_matrix_ops",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_softmax",
|
"distributed/_shard/sharded_tensor/ops/test_softmax",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_tensor_ops",
|
|
||||||
"distributed/_shard/sharding_spec/test_sharding_spec",
|
|
||||||
"distributed/_shard/sharded_optim/test_sharded_optim",
|
"distributed/_shard/sharded_optim/test_sharded_optim",
|
||||||
"distributed/_shard/test_partial_tensor",
|
"distributed/_shard/test_partial_tensor",
|
||||||
"distributed/_shard/test_replicated_tensor",
|
"distributed/_shard/test_replicated_tensor",
|
||||||
@ -228,6 +228,8 @@ ROCM_BLOCKLIST = [
|
|||||||
"distributed/rpc/test_faulty_agent",
|
"distributed/rpc/test_faulty_agent",
|
||||||
"distributed/rpc/test_tensorpipe_agent",
|
"distributed/rpc/test_tensorpipe_agent",
|
||||||
"distributed/rpc/cuda/test_tensorpipe_agent",
|
"distributed/rpc/cuda/test_tensorpipe_agent",
|
||||||
|
"distributed/_shard/checkpoint/test_checkpoint"
|
||||||
|
"distributed/_shard/checkpoint/test_file_system_checkpoint"
|
||||||
"distributed/_shard/sharding_spec/test_sharding_spec",
|
"distributed/_shard/sharding_spec/test_sharding_spec",
|
||||||
"distributed/_shard/sharding_plan/test_sharding_plan",
|
"distributed/_shard/sharding_plan/test_sharding_plan",
|
||||||
"distributed/_shard/sharded_tensor/test_megatron_prototype",
|
"distributed/_shard/sharded_tensor/test_megatron_prototype",
|
||||||
@ -243,8 +245,6 @@ ROCM_BLOCKLIST = [
|
|||||||
"distributed/_shard/sharded_tensor/ops/test_math_ops",
|
"distributed/_shard/sharded_tensor/ops/test_math_ops",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_matrix_ops",
|
"distributed/_shard/sharded_tensor/ops/test_matrix_ops",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_softmax",
|
"distributed/_shard/sharded_tensor/ops/test_softmax",
|
||||||
"distributed/_shard/sharded_tensor/ops/test_tensor_ops",
|
|
||||||
"distributed/_shard/sharding_spec/test_sharding_spec",
|
|
||||||
"distributed/_shard/sharded_optim/test_sharded_optim",
|
"distributed/_shard/sharded_optim/test_sharded_optim",
|
||||||
"distributed/_shard/test_partial_tensor",
|
"distributed/_shard/test_partial_tensor",
|
||||||
"distributed/_shard/test_replicated_tensor",
|
"distributed/_shard/test_replicated_tensor",
|
||||||
|
|||||||
@ -3,7 +3,8 @@
|
|||||||
from torch.testing._internal.common_utils import TestCase, run_tests
|
from torch.testing._internal.common_utils import TestCase, run_tests
|
||||||
import torch
|
import torch
|
||||||
import torch.nn.functional as F
|
import torch.nn.functional as F
|
||||||
from torch import Tensor, vmap
|
from torch import Tensor
|
||||||
|
from torch._vmap_internals import vmap
|
||||||
import functools
|
import functools
|
||||||
import itertools
|
import itertools
|
||||||
import warnings
|
import warnings
|
||||||
|
|||||||
@ -887,8 +887,6 @@ del register_after_fork
|
|||||||
# torch.jit.script as a decorator, for instance):
|
# torch.jit.script as a decorator, for instance):
|
||||||
from ._lobpcg import lobpcg as lobpcg
|
from ._lobpcg import lobpcg as lobpcg
|
||||||
|
|
||||||
from ._vmap_internals import vmap as vmap
|
|
||||||
|
|
||||||
# These were previously defined in native_functions.yaml and appeared on the
|
# These were previously defined in native_functions.yaml and appeared on the
|
||||||
# `torch` namespace, but we moved them to c10 dispatch to facilitate custom
|
# `torch` namespace, but we moved them to c10 dispatch to facilitate custom
|
||||||
# class usage. We add these lines here to preserve backward compatibility.
|
# class usage. We add these lines here to preserve backward compatibility.
|
||||||
|
|||||||
@ -111,9 +111,12 @@ class NVFuserEnabler {
|
|||||||
if (getCachedFuserEnabledEnvVar().has_value()) {
|
if (getCachedFuserEnabledEnvVar().has_value()) {
|
||||||
return *getCachedFuserEnabledEnvVar();
|
return *getCachedFuserEnabledEnvVar();
|
||||||
}
|
}
|
||||||
// 3. default value (if you switch this to true, make sure
|
// 3. default value
|
||||||
// to check nvfuserCanBeEnabled())
|
#ifdef FBCODE_CAFFE2
|
||||||
return false;
|
return false;
|
||||||
|
#else
|
||||||
|
return nvfuserCanBeEnabled();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
@ -60,7 +60,7 @@ class AppendOnlyList {
|
|||||||
|
|
||||||
void clear() {
|
void clear() {
|
||||||
buffer_.clear();
|
buffer_.clear();
|
||||||
buffer_last_ = buffer_.begin();
|
buffer_last_ = buffer_.before_begin();
|
||||||
n_blocks_ = 0;
|
n_blocks_ = 0;
|
||||||
next_ = nullptr;
|
next_ = nullptr;
|
||||||
end_ = nullptr;
|
end_ = nullptr;
|
||||||
|
|||||||
@ -9,6 +9,7 @@ import torch.distributed._shard.sharding_spec as shard_spec
|
|||||||
from torch.distributed._shard.partial_tensor import _PartialTensor
|
from torch.distributed._shard.partial_tensor import _PartialTensor
|
||||||
|
|
||||||
from .api import (
|
from .api import (
|
||||||
|
_CUSTOM_SHARDED_OPS,
|
||||||
_SHARDED_OPS,
|
_SHARDED_OPS,
|
||||||
Shard,
|
Shard,
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
@ -411,7 +412,7 @@ def pre_load_state_dict_hook(module, state_dict, prefix, local_metadata, strict,
|
|||||||
if isinstance(state_dict[key], ShardedTensor):
|
if isinstance(state_dict[key], ShardedTensor):
|
||||||
setattr(submodule, attr_name, state_dict[key])
|
setattr(submodule, attr_name, state_dict[key])
|
||||||
|
|
||||||
def sharded_op_impl(func):
|
def custom_sharded_op_impl(func):
|
||||||
"""
|
"""
|
||||||
Provides a way for users to write their own custom sharded operator. This
|
Provides a way for users to write their own custom sharded operator. This
|
||||||
can be used to override existing ShardedTensor operators or write a new
|
can be used to override existing ShardedTensor operators or write a new
|
||||||
@ -420,7 +421,7 @@ def sharded_op_impl(func):
|
|||||||
parameters, the function provided will be invoked for that operator.
|
parameters, the function provided will be invoked for that operator.
|
||||||
|
|
||||||
Example::
|
Example::
|
||||||
>>> @sharded_op_impl(torch.nn.functional.linear)
|
>>> @custom_sharded_op_impl(torch.nn.functional.linear)
|
||||||
>>> def my_custom_sharded_linear(types, args, kwargs, process_group):
|
>>> def my_custom_sharded_linear(types, args, kwargs, process_group):
|
||||||
>>> ....
|
>>> ....
|
||||||
>>>
|
>>>
|
||||||
@ -441,6 +442,16 @@ def sharded_op_impl(func):
|
|||||||
func(Callable): Torch function for which we want to provide a sharded
|
func(Callable): Torch function for which we want to provide a sharded
|
||||||
implementation (ex: torch.nn.functional.linear)
|
implementation (ex: torch.nn.functional.linear)
|
||||||
"""
|
"""
|
||||||
|
return functools.partial(
|
||||||
|
_decorator_func,
|
||||||
|
op=func,
|
||||||
|
op_table=_CUSTOM_SHARDED_OPS
|
||||||
|
)
|
||||||
|
|
||||||
|
def _sharded_op_impl(func):
|
||||||
|
"""
|
||||||
|
Decorator to register a default sharded op.
|
||||||
|
"""
|
||||||
return functools.partial(
|
return functools.partial(
|
||||||
_decorator_func,
|
_decorator_func,
|
||||||
op=func,
|
op=func,
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import functools
|
import functools
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
sharded_op_impl,
|
_sharded_op_impl,
|
||||||
Shard,
|
Shard,
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
)
|
)
|
||||||
@ -13,7 +13,7 @@ def _sharded_op_common(op, early_stop_func, extra_check):
|
|||||||
|
|
||||||
Example::
|
Example::
|
||||||
>>> op = torch.transpose
|
>>> op = torch.transpose
|
||||||
>>> @sharded_op_impl(op)
|
>>> @_sharded_op_impl(op)
|
||||||
>>> @_sharded_op_common(op, early_stop_func, extra_check)
|
>>> @_sharded_op_common(op, early_stop_func, extra_check)
|
||||||
>>> def sharded_tensor_op(types, args, kwargs, process_group):
|
>>> def sharded_tensor_op(types, args, kwargs, process_group):
|
||||||
>>> ....
|
>>> ....
|
||||||
@ -82,7 +82,7 @@ def _register_sharded_op_on_local_shards(
|
|||||||
func (Callable): registered implementation for sharded op for
|
func (Callable): registered implementation for sharded op for
|
||||||
``__torch_function__`` dispatch.
|
``__torch_function__`` dispatch.
|
||||||
"""
|
"""
|
||||||
@sharded_op_impl(op)
|
@_sharded_op_impl(op)
|
||||||
@_sharded_op_common(op, early_stop_func, extra_check)
|
@_sharded_op_common(op, early_stop_func, extra_check)
|
||||||
def sharded_tensor_op_on_local_shards(types, args=(), kwargs=None, pg=None):
|
def sharded_tensor_op_on_local_shards(types, args=(), kwargs=None, pg=None):
|
||||||
st = args[0]
|
st = args[0]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import torch.distributed as dist
|
|||||||
import torch.distributed.distributed_c10d as distributed_c10d
|
import torch.distributed.distributed_c10d as distributed_c10d
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
sharded_op_impl
|
_sharded_op_impl
|
||||||
)
|
)
|
||||||
|
|
||||||
def _communicate_result(result, pg):
|
def _communicate_result(result, pg):
|
||||||
@ -59,10 +59,10 @@ def binary_cmp(cmp_fun, types, args, kwargs=None, process_group=None):
|
|||||||
|
|
||||||
return _communicate_result(True, st1._process_group)
|
return _communicate_result(True, st1._process_group)
|
||||||
|
|
||||||
@sharded_op_impl(torch.equal)
|
@_sharded_op_impl(torch.equal)
|
||||||
def equal(types, args, kwargs, process_group):
|
def equal(types, args, kwargs, process_group):
|
||||||
return binary_cmp(torch.equal, types, args, kwargs, process_group)
|
return binary_cmp(torch.equal, types, args, kwargs, process_group)
|
||||||
|
|
||||||
@sharded_op_impl(torch.allclose)
|
@_sharded_op_impl(torch.allclose)
|
||||||
def allclose(types, args, kwargs, process_group):
|
def allclose(types, args, kwargs, process_group):
|
||||||
return binary_cmp(torch.allclose, types, args, kwargs, process_group)
|
return binary_cmp(torch.allclose, types, args, kwargs, process_group)
|
||||||
|
|||||||
@ -1,13 +1,13 @@
|
|||||||
import torch
|
import torch
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
sharded_op_impl,
|
_sharded_op_impl,
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
)
|
)
|
||||||
from torch.distributed._shard.sharding_spec import ChunkShardingSpec
|
from torch.distributed._shard.sharding_spec import ChunkShardingSpec
|
||||||
|
|
||||||
|
|
||||||
def register_chunk_op(op):
|
def register_chunk_op(op):
|
||||||
@sharded_op_impl(op)
|
@_sharded_op_impl(op)
|
||||||
def sharded_chunk(types, args=(), kwargs=None, pg=None):
|
def sharded_chunk(types, args=(), kwargs=None, pg=None):
|
||||||
"""
|
"""
|
||||||
Handles ``__torch_function__`` dispatch for the chunk op.
|
Handles ``__torch_function__`` dispatch for the chunk op.
|
||||||
|
|||||||
@ -1,14 +1,14 @@
|
|||||||
import torch
|
import torch
|
||||||
import torch.distributed._shard.sharded_tensor as sharded_tensor
|
import torch.distributed._shard.sharded_tensor as sharded_tensor
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
sharded_op_impl,
|
_sharded_op_impl,
|
||||||
)
|
)
|
||||||
|
|
||||||
def validate_param(param, param_name):
|
def validate_param(param, param_name):
|
||||||
if param is None:
|
if param is None:
|
||||||
raise ValueError(f"param: {param_name} shouldn't be None!")
|
raise ValueError(f"param: {param_name} shouldn't be None!")
|
||||||
|
|
||||||
@sharded_op_impl(torch.nn.init.uniform_)
|
@_sharded_op_impl(torch.nn.init.uniform_)
|
||||||
def uniform_(types, args=(), kwargs=None, pg=None):
|
def uniform_(types, args=(), kwargs=None, pg=None):
|
||||||
r"""
|
r"""
|
||||||
Fills the Tensor in sharded_tensor.local_shards with values drawn from the uniform
|
Fills the Tensor in sharded_tensor.local_shards with values drawn from the uniform
|
||||||
@ -30,7 +30,7 @@ def uniform_(types, args=(), kwargs=None, pg=None):
|
|||||||
torch.nn.init.uniform_(shard.tensor, a=a, b=b)
|
torch.nn.init.uniform_(shard.tensor, a=a, b=b)
|
||||||
return sharded_tensor
|
return sharded_tensor
|
||||||
|
|
||||||
@sharded_op_impl(torch.nn.init.normal_)
|
@_sharded_op_impl(torch.nn.init.normal_)
|
||||||
def normal_(types, args=(), kwargs=None, pg=None):
|
def normal_(types, args=(), kwargs=None, pg=None):
|
||||||
r"""
|
r"""
|
||||||
Fills the Tensors in sharded_tensor.local_shards with values drawn from the normal
|
Fills the Tensors in sharded_tensor.local_shards with values drawn from the normal
|
||||||
@ -52,7 +52,7 @@ def normal_(types, args=(), kwargs=None, pg=None):
|
|||||||
torch.nn.init.normal_(shard.tensor, mean=mean, std=std)
|
torch.nn.init.normal_(shard.tensor, mean=mean, std=std)
|
||||||
return sharded_tensor
|
return sharded_tensor
|
||||||
|
|
||||||
@sharded_op_impl(torch.nn.init.kaiming_uniform_)
|
@_sharded_op_impl(torch.nn.init.kaiming_uniform_)
|
||||||
def kaiming_uniform_(types, args=(), kwargs=None, pg=None):
|
def kaiming_uniform_(types, args=(), kwargs=None, pg=None):
|
||||||
r"""
|
r"""
|
||||||
Fills the Tensors in sharded_tensor.local_shards with values according to the method
|
Fills the Tensors in sharded_tensor.local_shards with values according to the method
|
||||||
@ -88,7 +88,7 @@ def kaiming_uniform_(types, args=(), kwargs=None, pg=None):
|
|||||||
torch.nn.init.kaiming_uniform_(shard.tensor, a=a, mode=mode, nonlinearity=nonlinearity)
|
torch.nn.init.kaiming_uniform_(shard.tensor, a=a, mode=mode, nonlinearity=nonlinearity)
|
||||||
return sharded_tensor
|
return sharded_tensor
|
||||||
|
|
||||||
@sharded_op_impl(torch.nn.init.constant_)
|
@_sharded_op_impl(torch.nn.init.constant_)
|
||||||
def constant_(types, args=(), kwargs=None, pg=None):
|
def constant_(types, args=(), kwargs=None, pg=None):
|
||||||
r"""
|
r"""
|
||||||
Fills the input ShardedTensor with the value \text{val}val.
|
Fills the input ShardedTensor with the value \text{val}val.
|
||||||
@ -116,7 +116,7 @@ tensor_like_creation_op_map = {
|
|||||||
|
|
||||||
# tensor ops that behave the same as the default tensor
|
# tensor ops that behave the same as the default tensor
|
||||||
def register_tensor_creation_op(op):
|
def register_tensor_creation_op(op):
|
||||||
@sharded_op_impl(op)
|
@_sharded_op_impl(op)
|
||||||
def tensor_creation_op(types, args=(), kwargs=None, pg=None):
|
def tensor_creation_op(types, args=(), kwargs=None, pg=None):
|
||||||
"""
|
"""
|
||||||
Handles ``__torch_function__`` dispatch for tensor creation ops that
|
Handles ``__torch_function__`` dispatch for tensor creation ops that
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import torch
|
|||||||
from torch import Tensor
|
from torch import Tensor
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
sharded_op_impl
|
_sharded_op_impl
|
||||||
)
|
)
|
||||||
from torch.distributed._shard.replicated_tensor import ReplicatedTensor
|
from torch.distributed._shard.replicated_tensor import ReplicatedTensor
|
||||||
from torch.distributed._shard._utils import narrow_tensor
|
from torch.distributed._shard._utils import narrow_tensor
|
||||||
@ -74,7 +74,7 @@ def binary_math_op_impl(op, types, args=(), kwargs=None, pg=None):
|
|||||||
f"kwargs: {kwargs} not supported yet for ShardedTensor!")
|
f"kwargs: {kwargs} not supported yet for ShardedTensor!")
|
||||||
|
|
||||||
def register_math_op(op):
|
def register_math_op(op):
|
||||||
@sharded_op_impl(op)
|
@_sharded_op_impl(op)
|
||||||
def binary_math_op(types, args=(), kwargs=None, pg=None):
|
def binary_math_op(types, args=(), kwargs=None, pg=None):
|
||||||
return binary_math_op_impl(op, types, args, kwargs, pg)
|
return binary_math_op_impl(op, types, args, kwargs, pg)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import copy
|
import copy
|
||||||
import torch
|
import torch
|
||||||
from torch.distributed._shard.sharded_tensor import (
|
from torch.distributed._shard.sharded_tensor import (
|
||||||
sharded_op_impl,
|
_sharded_op_impl,
|
||||||
Shard,
|
Shard,
|
||||||
ShardedTensor,
|
ShardedTensor,
|
||||||
)
|
)
|
||||||
@ -10,7 +10,7 @@ from ._common import (
|
|||||||
)
|
)
|
||||||
from torch.distributed._shard.common_op_utils import _register_default_op
|
from torch.distributed._shard.common_op_utils import _register_default_op
|
||||||
|
|
||||||
@sharded_op_impl(torch.Tensor.__deepcopy__)
|
@_sharded_op_impl(torch.Tensor.__deepcopy__)
|
||||||
def tensor_deepcopy(types, args=(), kwargs=None, pg=None):
|
def tensor_deepcopy(types, args=(), kwargs=None, pg=None):
|
||||||
# NOTE: we directly implement deepcopy magic method
|
# NOTE: we directly implement deepcopy magic method
|
||||||
# instead of using the default tensor.__deepcopy__
|
# instead of using the default tensor.__deepcopy__
|
||||||
@ -31,18 +31,18 @@ def tensor_deepcopy(types, args=(), kwargs=None, pg=None):
|
|||||||
|
|
||||||
|
|
||||||
# Tensor properties access
|
# Tensor properties access
|
||||||
_register_default_op(torch.Tensor.requires_grad.__get__, sharded_op_impl) # type: ignore[attr-defined]
|
_register_default_op(torch.Tensor.requires_grad.__get__, _sharded_op_impl) # type: ignore[attr-defined]
|
||||||
_register_default_op(torch.Tensor.shape.__get__, sharded_op_impl) # type: ignore[attr-defined]
|
_register_default_op(torch.Tensor.shape.__get__, _sharded_op_impl) # type: ignore[attr-defined]
|
||||||
_register_default_op(torch.Tensor.dtype.__get__, sharded_op_impl) # type: ignore[attr-defined]
|
_register_default_op(torch.Tensor.dtype.__get__, _sharded_op_impl) # type: ignore[attr-defined]
|
||||||
_register_default_op(torch.Tensor.layout.__get__, sharded_op_impl) # type: ignore[attr-defined]
|
_register_default_op(torch.Tensor.layout.__get__, _sharded_op_impl) # type: ignore[attr-defined]
|
||||||
_register_default_op(torch.Tensor.size, sharded_op_impl)
|
_register_default_op(torch.Tensor.size, _sharded_op_impl)
|
||||||
_register_default_op(torch.Tensor.dim, sharded_op_impl)
|
_register_default_op(torch.Tensor.dim, _sharded_op_impl)
|
||||||
_register_default_op(torch.Tensor.ndim.__get__, sharded_op_impl) # type: ignore[attr-defined]
|
_register_default_op(torch.Tensor.ndim.__get__, _sharded_op_impl) # type: ignore[attr-defined]
|
||||||
_register_default_op(torch.Tensor.is_contiguous, sharded_op_impl)
|
_register_default_op(torch.Tensor.is_contiguous, _sharded_op_impl)
|
||||||
_register_default_op(torch.Tensor.contiguous, sharded_op_impl)
|
_register_default_op(torch.Tensor.contiguous, _sharded_op_impl)
|
||||||
|
|
||||||
# __reduce_ex__ to dispatch to get_state/set_state
|
# __reduce_ex__ to dispatch to get_state/set_state
|
||||||
_register_default_op(torch.Tensor.__reduce_ex__, sharded_op_impl)
|
_register_default_op(torch.Tensor.__reduce_ex__, _sharded_op_impl)
|
||||||
|
|
||||||
def sharded_type_as_check(*args, **kwargs):
|
def sharded_type_as_check(*args, **kwargs):
|
||||||
"""
|
"""
|
||||||
@ -153,7 +153,7 @@ _register_sharded_op_on_local_shards(
|
|||||||
customized_func=sharded_detach,
|
customized_func=sharded_detach,
|
||||||
)
|
)
|
||||||
|
|
||||||
@sharded_op_impl(torch.Tensor.requires_grad_)
|
@_sharded_op_impl(torch.Tensor.requires_grad_)
|
||||||
def tensor_requires_grad_set(types, args=(), kwargs=None, pg=None):
|
def tensor_requires_grad_set(types, args=(), kwargs=None, pg=None):
|
||||||
self_st = args[0]
|
self_st = args[0]
|
||||||
requires_grad = args[1]
|
requires_grad = args[1]
|
||||||
|
|||||||
@ -11,8 +11,8 @@ from typing import (
|
|||||||
cast,
|
cast,
|
||||||
)
|
)
|
||||||
import copy
|
import copy
|
||||||
|
from functools import reduce
|
||||||
import weakref
|
import weakref
|
||||||
import math
|
|
||||||
|
|
||||||
import threading
|
import threading
|
||||||
import torch
|
import torch
|
||||||
@ -49,9 +49,12 @@ _sharded_tensor_lock = threading.Lock()
|
|||||||
_sharded_tensor_current_id = 0
|
_sharded_tensor_current_id = 0
|
||||||
_sharded_tensor_map: Dict[int, 'weakref.ReferenceType[ShardedTensor]'] = {}
|
_sharded_tensor_map: Dict[int, 'weakref.ReferenceType[ShardedTensor]'] = {}
|
||||||
|
|
||||||
# Custom sharded ops
|
# Default sharded ops
|
||||||
_SHARDED_OPS: Dict[Callable, Callable] = {}
|
_SHARDED_OPS: Dict[Callable, Callable] = {}
|
||||||
|
|
||||||
|
# Customized user ops
|
||||||
|
_CUSTOM_SHARDED_OPS: Dict[Callable, Callable] = {}
|
||||||
|
|
||||||
def _register_remote_shards(sharded_tensor_id: int, rrefs: List[rpc.RRef[Shard]], rpc_rank: int):
|
def _register_remote_shards(sharded_tensor_id: int, rrefs: List[rpc.RRef[Shard]], rpc_rank: int):
|
||||||
with _sharded_tensor_lock:
|
with _sharded_tensor_lock:
|
||||||
if sharded_tensor_id not in _sharded_tensor_map:
|
if sharded_tensor_id not in _sharded_tensor_map:
|
||||||
@ -284,7 +287,7 @@ class ShardedTensor(object):
|
|||||||
Default: ``None``
|
Default: ``None``
|
||||||
"""
|
"""
|
||||||
def shard_size(shard_md):
|
def shard_size(shard_md):
|
||||||
return math.prod(shard_md.shard_sizes) # type: ignore[attr-defined]
|
return reduce((lambda x, y: x * y), shard_md.shard_sizes) # type: ignore[attr-defined]
|
||||||
|
|
||||||
rank = dist.get_rank(self._process_group)
|
rank = dist.get_rank(self._process_group)
|
||||||
full_size = self.metadata().size
|
full_size = self.metadata().size
|
||||||
@ -782,6 +785,10 @@ class ShardedTensor(object):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def __torch_function__(cls, func, types, args=(), kwargs=None):
|
def __torch_function__(cls, func, types, args=(), kwargs=None):
|
||||||
def dispatch(st: ShardedTensor, func: Callable):
|
def dispatch(st: ShardedTensor, func: Callable):
|
||||||
|
# Dispatch to custom user provided op first if it exists.
|
||||||
|
if func in _CUSTOM_SHARDED_OPS:
|
||||||
|
return _CUSTOM_SHARDED_OPS[func](types, args, kwargs, st._process_group)
|
||||||
|
|
||||||
# Dispatch to custom sharding spec op if it has one.
|
# Dispatch to custom sharding spec op if it has one.
|
||||||
if _has_custom_op(st._sharding_spec, func):
|
if _has_custom_op(st._sharding_spec, func):
|
||||||
return _dispatch_custom_op(
|
return _dispatch_custom_op(
|
||||||
|
|||||||
Reference in New Issue
Block a user