Skip to content

Commit 03544a1

Browse files
authored
Use standard action setup-triton in benchmarks (#3886)
There is no need to build Triton wheel in benchmarking workflows, just installed Triton.
1 parent d9e0891 commit 03544a1

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

.github/workflows/third-party-benchmarks.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,8 @@ jobs:
6969
- name: Setup PyTorch
7070
uses: ./.github/actions/setup-pytorch
7171

72-
- name: Build Triton wheels
72+
- name: Setup Triton
7373
uses: ./.github/actions/setup-triton
74-
with:
75-
command: DEBUG=1 python setup.py bdist_wheel
76-
77-
- name: Install Triton
78-
run: |
79-
pip install python/dist/*.whl
8074

8175
- name: Install benchmark dependencies
8276
id: install

.github/workflows/triton-benchmarks.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -109,18 +109,8 @@ jobs:
109109
- name: Setup PyTorch
110110
uses: ./.github/actions/setup-pytorch
111111

112-
- name: Build Triton wheels
112+
- name: Setup Triton
113113
uses: ./.github/actions/setup-triton
114-
with:
115-
command: DEBUG=1 python setup.py bdist_wheel
116-
117-
- name: Install Triton
118-
run: |
119-
pip install python/dist/*.whl
120-
121-
- name: Install benchmark dependencies
122-
run: |
123-
pip install matplotlib pandas tabulate
124114

125115
- name: Create reports dir
126116
run: |

0 commit comments

Comments
 (0)