8000 [ROCm] Enable mi300-specific workflows to be triggered on PRs (#147904) · pytorch/pytorch@6c3492b · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c3492b

Browse files
jithunnair-amdpytorchmergebot
authored andcommitted
[ROCm] Enable mi300-specific workflows to be triggered on PRs (#147904)
This change will be needed to be able to trigger the MI300-specific CI workflows on PRs by using a PR label. * inductor-rocm-mi300.yml uses the existing `ciflow/inductor-rocm` label so that any PR manually labeled as such will trigger `inductor` config runs on both MI200 and MI300. * rocm-mi300.yml uses a separate `ciflow/rocm-mi300` label, since we don't want to over-trigger `default` config runs on MI300 runners due to limited capacity, and [`ciflow/rocm` label is automatically applied](https://github.com/pytorch/test-infra/blob/79438512a0632583899938d3b0277da78f5569e0/torchci/lib/bot/autoLabelBot.ts#L24) on many PRs. * inductor-perf-test-nightly-rocm.yml uses a separate `ciflow/inductor-perf-test-nightly-rocm` label, so that we can manually trigger a round of perf testing on MI300 runners to test the perf impact of a major inductor-related change. Pull Request resolved: #147904 Approved by: https://github.com/huydhn
1 parent 2295efa commit 6c3492b

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

.github/pytorch-probot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ciflow_push_tags:
77
- ciflow/inductor
88
- ciflow/inductor-periodic
99
- ciflow/inductor-rocm
10+
- ciflow/inductor-perf-test-nightly-rocm
1011
- ciflow/inductor-perf-compare
1112
- ciflow/inductor-micro-benchmark
1213
- ciflow/inductor-micro-benchmark-cpu-x86
@@ -16,6 +17,7 @@ ciflow_push_tags:
1617
- ciflow/nightly
1718
- ciflow/periodic
1819
- ciflow/rocm
20+
- ciflow/rocm-mi300
1921
- ciflow/s390
2022
- ciflow/slow
2123
- ciflow/trunk

.github/workflows/inductor-perf-test-nightly-rocm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: inductor-perf-nightly-rocm
22

33
on:
4+
push:
5+
tags:
6+
- ciflow/inductor-perf-test-nightly-rocm/*
47
schedule:
58
- cron: 0 7 * * 0
69
# NB: GitHub has an upper limit of 10 inputs here, so before we can sort it

.github/workflows/inductor-rocm-mi300.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
tags:
8+
- ciflow/inductor-rocm/*
79
workflow_dispatch:
810

911
concurrency:

.github/workflows/rocm-mi300.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
tags:
8+
- ciflow/rocm-mi300/*
79
workflow_dispatch:
810
schedule:
911
- cron: 29 8 * * * # about 1:29am PDT

0 commit comments

Comments
 (0)
0