mirror of
https://github.com/zebrajr/pytorch.git
synced 2026-01-15 12:15:51 +00:00
Claude Coded, and inspired by fantastic mismatch between45d14e2497/.github/workflows/inductor-unittest.yml (L92-L93)And45d14e2497/.github/workflows/inductor-unittest.yml (L108-L109)Which resulted in using halide build artifacts while attempting to run pallas unit tests Pull Request resolved: https://github.com/pytorch/pytorch/pull/169423 Approved by: https://github.com/seemethere
60 lines
2.1 KiB
YAML
60 lines
2.1 KiB
YAML
name: inductor-rocm-mi200
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 0 */3 * * *
|
|
push:
|
|
branches:
|
|
- release/*
|
|
tags:
|
|
- ciflow/inductor-rocm-mi200/*
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
|
|
jobs:
|
|
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 }}
|
|
opt_out_experiments: lf
|
|
|
|
linux-jammy-rocm-py3_10-inductor-build:
|
|
name: rocm-py3.10-inductor
|
|
uses: ./.github/workflows/_linux-build.yml
|
|
needs: get-label-type
|
|
with:
|
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
|
build-environment: linux-jammy-rocm-py3.10
|
|
docker-image-name: ci-image:pytorch-linux-jammy-rocm-n-py3
|
|
test-matrix: |
|
|
{ include: [
|
|
{ config: "inductor", shard: 1, num_shards: 2, runner: "linux.rocm.gpu.2" },
|
|
{ config: "inductor", shard: 2, num_shards: 2, runner: "linux.rocm.gpu.2" },
|
|
]}
|
|
secrets: inherit
|
|
|
|
linux-jammy-rocm-py3_10-inductor-test:
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
name: rocm-py3.10-inductor
|
|
uses: ./.github/workflows/_rocm-test.yml
|
|
needs: linux-jammy-rocm-py3_10-inductor-build
|
|
with:
|
|
build-environment: ${{ needs.linux-jammy-rocm-py3_10-inductor-build.outputs.build-environment }}
|
|
docker-image: ${{ needs.linux-jammy-rocm-py3_10-inductor-build.outputs.docker-image }}
|
|
test-matrix: ${{ needs.linux-jammy-rocm-py3_10-inductor-build.outputs.test-matrix }}
|
|
secrets: inherit
|