Skip to content

Commit 488f57c

Browse files
committed
Test skiplist approach
1 parent 16479fc commit 488f57c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/triton-benchmarks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ on:
2424
description: Run name
2525
type: string
2626
default: "Triton benchmarks"
27-
only_subset:
28-
description: Run only core subset of benchmarks
29-
type: boolean
30-
default: false
27+
skip_benchmarks:
28+
description: List of benchmarks to skip
29+
type: string
30+
default: ""
3131
schedule:
3232
- cron: "5 23 * * *"
3333
pull_request:
@@ -116,7 +116,7 @@ jobs:
116116
python setup.py install
117117
118118
- name: Run Triton Softmax kernel benchmark
119-
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
119+
if: ${{ steps.install.outcome == 'success' && !cancelled() && search(inputs.skip_benchmarks, "fused_softmax.py") }}
120120
run: |
121121
cd benchmarks/triton_kernels_benchmark
122122
python fused_softmax.py --reports $REPORTS

0 commit comments

Comments
 (0)