@@ -126,6 +126,11 @@ jobs:
126
126
# Convert the benchmark results to markdown format
127
127
python3 benchmarks/scripts/convert_json_to_markdown.py
128
128
129
+ - name : Generate step summary
130
+ if : github.event_name != 'schedule'
131
+ run : |
132
+ cat ./benchmarks/results/benchmark_results.md >> $GITHUB_STEP_SUMMARY
133
+
129
134
- name : Upload benchmark artifacts
130
135
if : github.event_name != 'schedule'
131
136
uses : actions/upload-artifact@v4
@@ -136,31 +141,24 @@ jobs:
136
141
retention-days : 90
137
142
overwrite : true
138
143
139
- # - name: Checkout cosdt/elastic-tool
140
- # uses: actions/checkout@v4
141
- # with:
142
- # repository: cosdt/elastic-tool
143
- # path: ./elastic_tool
144
- # ref: 0.1.0-dev
145
-
146
- # - name: Install elastic_tool
147
- # working-directory: ./elastic_tool
148
- # run: |
149
- # pip install -e .
144
+ - name : Checkout cosdt/elastic-tool
145
+ uses : actions/checkout@v4
146
+ with :
147
+ repository : cosdt/elastic-tool
148
+ path : ./elastic_tool
149
+ ref : 0.1.0-dev
150
+
151
+ - name : Install elastic_tool
152
+ working-directory : ./elastic_tool
153
+ run : |
154
+ pip install -e .
150
155
151
156
- name : Collect pr info from vllm-project/vllm-ascend
152
157
if : github.event_name == 'schedule'
153
158
run : |
154
159
# Only get the pull request which may influences performance
155
- # git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
156
- # escli check commit_log.txt
157
-
158
- # make a fake commit log for testing
159
- printf "%s\n" \
160
- "507ae627cad68d93c62adf3c2409f4ff10a25536 feat: support compile torchair graph while warming up (#839)" \
161
- "5a1689fc648c8afa04ee040bf1b3526a6fe3d75e [Fix] Fix update_aclgraph_sizes when running MoE models (#913)" \
162
- "3442fbdb235b4c6d72c2bc64a49707a7bd89958e [1/N][UT][v1 MTP] add basic v1 mtp features (#890)" \
163
- > commit_log.txt
160
+ git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
161
+ escli check commit_log.txt
164
162
165
163
- name : Run benchmark iteration
166
164
if : github.event_name == 'schedule'
0 commit comments