Skip to content

Commit 91066ce

Browse files
authored
New workflows to run benchmarks on PVC, BMG triggered by PR (#4353)
Fixes #4325. --------- Signed-off-by: Pavel Chekin <[email protected]>
1 parent 6f5a8a8 commit 91066ce

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Triton benchmarks, BMG
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths:
8+
- .github/workflows/triton-benchmarks*.yml
9+
- benchmarks/**
10+
11+
jobs:
12+
benchmarks:
13+
uses: ./.github/workflows/triton-benchmarks.yml
14+
with:
15+
runner_label: b580
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Triton benchmarks, PVC
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths:
8+
- .github/workflows/triton-benchmarks*.yml
9+
- benchmarks/**
10+
11+
jobs:
12+
benchmarks:
13+
uses: ./.github/workflows/triton-benchmarks.yml
14+
with:
15+
runner_label: max1550

.github/workflows/triton-benchmarks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ on:
4444
type: boolean
4545
default: false
4646

47-
pull_request:
48-
branches:
49-
- main
50-
paths:
51-
- .github/workflows/triton-benchmarks.yml
52-
- benchmarks/**
47+
# This workflow is also called from workflows triton-benchmarks-*.yml.
48+
workflow_call:
49+
inputs:
50+
runner_label:
51+
description: Runner label
52+
type: string
5353

5454
# Cancels in-progress PR runs when the PR is updated. Manual runs are never cancelled.
5555
concurrency:

0 commit comments

Comments
 (0)