periodic-rocm-mi300 #1813
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: periodic-rocm-mi300 | |
| on: | |
| schedule: | |
| - cron: 0 0,3,6,9,12,15,18,21 * * * # run every 3 hours for regression coverage | |
| push: | |
| tags: | |
| - ciflow/periodic-rocm-mi300/* | |
| branches: | |
| - release/* | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' && github.run_id }}-${{ github.event_name == 'schedule' }}-${{ github.event.schedule }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| llm-td: | |
| if: github.repository_owner == 'pytorch' | |
| name: before-test | |
| uses: ./.github/workflows/llm_td_retrieval.yml | |
| permissions: | |
| id-token: write | |
| contents: read | |
| target-determination: | |
| name: before-test | |
| uses: ./.github/workflows/target_determination.yml | |
| needs: llm-td | |
| permissions: | |
| id-token: write | |
| contents: read | |
| get-label-type: | |
| name: get-label-type | |
| uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main | |
| if: (github.event_name != 'schedule' || github.repository == 'pytorch/pytorch') && github.repository_owner == 'pytorch' | |
| 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-noble-rocm-py3_12-build: | |
| name: linux-noble-rocm-py3.12-mi300 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: get-label-type | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-noble-rocm-py3.12-mi300 | |
| docker-image-name: ci-image:pytorch-linux-noble-rocm-n-py3 | |
| test-matrix: | | |
| { include: [ | |
| { config: "distributed", shard: 1, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4", owners: ["module:rocm", "oncall:distributed"] }, | |
| { config: "distributed", shard: 2, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4", owners: ["module:rocm", "oncall:distributed"] }, | |
| { config: "distributed", shard: 3, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4", owners: ["module:rocm", "oncall:distributed"] }, | |
| ]} | |
| secrets: inherit | |
| linux-noble-rocm-py3_12-test: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| name: linux-noble-rocm-py3.12-mi300 | |
| uses: ./.github/workflows/_rocm-test.yml | |
| needs: | |
| - linux-noble-rocm-py3_12-build | |
| - target-determination | |
| with: | |
| build-environment: ${{ needs.linux-noble-rocm-py3_12-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-noble-rocm-py3_12-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.linux-noble-rocm-py3_12-build.outputs.test-matrix }} | |
| secrets: inherit |