Cherry-picked commit with merge conflict #87
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Limited CI for distributed tests on H100 | ||
| on: | ||
| pull_request: | ||
| paths: | ||
| - .github/workflows/h100-distributed.yml | ||
| workflow_dispatch: | ||
| push: | ||
| tags: | ||
| - ciflow/h100-distributed/* | ||
| <<<<<<< HEAD | ||
| schedule: | ||
| - cron: 46 8 * * * # about 1:46am PDT | ||
| ======= | ||
| >>>>>>> 245bf6edbc ([AUTOGENERATED] [release/2.8] skip convolution tests on Navi4x (#2675)) | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }} | ||
| cancel-in-progress: true | ||
| <<<<<<< HEAD | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| ======= | ||
| >>>>>>> 245bf6edbc ([AUTOGENERATED] [release/2.8] skip convolution tests on Navi4x (#2675)) | ||
| jobs: | ||
| get-label-type: | ||
| if: github.repository_owner == 'pytorch' | ||
| name: get-label-type | ||
| <<<<<<< HEAD | ||
| uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@release/2.9 | ||
| ======= | ||
| uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@release/2.8 | ||
| >>>>>>> 245bf6edbc ([AUTOGENERATED] [release/2.8] skip convolution tests on Navi4x (#2675)) | ||
| with: | ||
| triggering_actor: ${{ github.triggering_actor }} | ||
| issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }} | ||
| curr_branch: ${{ github.head_ref || github.ref_name }} | ||
| curr_ref_type: ${{ github.ref_type }} | ||
| linux-jammy-cuda12_8-py3_10-gcc11-sm90-build-dist: | ||
| name: linux-jammy-cuda12.8-py3.10-gcc11-sm90-dist | ||
| uses: ./.github/workflows/_linux-build.yml | ||
| needs: get-label-type | ||
| with: | ||
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | ||
| runner: "linux.12xlarge" | ||
| build-environment: linux-jammy-cuda12.8-py3.10-gcc11-sm90-dist | ||
| docker-image-name: ci-image:pytorch-linux-jammy-cuda12.8-cudnn9-py3-gcc11 | ||
| cuda-arch-list: '9.0' | ||
| test-matrix: | | ||
| { include: [ | ||
| { config: "h100_distributed", shard: 1, num_shards: 1, runner: "linux.aws.h100.8" }, | ||
| ]} | ||
| secrets: inherit | ||
| linux-jammy-cuda12_8-py3_10-gcc11-sm90-test: | ||
| name: linux-jammy-cuda12.8-py3.10-gcc11-sm90-dist | ||
| uses: ./.github/workflows/_linux-test.yml | ||
| needs: | ||
| - linux-jammy-cuda12_8-py3_10-gcc11-sm90-build-dist | ||
| with: | ||
| build-environment: linux-jammy-cuda12.8-py3.10-gcc11-sm90-dist | ||
| docker-image: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-sm90-build-dist.outputs.docker-image }} | ||
| test-matrix: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-sm90-build-dist.outputs.test-matrix }} | ||
| secrets: inherit | ||