Skip to content

Commit 3196376

Browse files
committed
move launch benchmarks to benchmarks suite
1 parent e1773dd commit 3196376

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-test-reusable.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,6 @@ jobs:
373373
run: |
374374
timeout -s KILL 4900 ${{ env.TRITON_TEST_CMD }} --inductor || ${{ inputs.ignore_errors }}
375375
376-
- name: Run microbenchmark tests
377-
if: matrix.suite == 'rest'
378-
run: |
379-
python3 python/test/microbenchmark/launch_overhead.py
380-
381376
- name: Save pip cache
382377
if: ${{ steps.pip-cache.outputs.status == 'miss' }}
383378
uses: ./.github/actions/save

.github/workflows/triton-benchmarks.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,11 @@ jobs:
376376
cd benchmarks/micro_benchmarks
377377
python run_benchmarks.py --reports $REPORTS
378378
379+
- name: Run launch microbenchmark tests
380+
if: ${{ steps.install.outcome == 'success' && !cancelled() && (inputs.benchmarks == '' || contains(fromJson(inputs.benchmarks || '[]'), 'launch_overhead.py')) && !contains(fromJson(inputs.skip_benchmarks || '[]'), 'launch_micro_benchmarks') }}
381+
run: |
382+
python3 python/test/microbenchmark/launch_overhead.py
383+
379384
- name: Upload benchmark reports
380385
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
381386
uses: actions/upload-artifact@v5

0 commit comments

Comments
 (0)