@@ -117,6 +117,15 @@ jobs:
117
117
118
118
cat results.github.env >> $GITHUB_ENV
119
119
120
+ - uses : actions/upload-artifact@v4
121
+ with :
122
+ name : benchmark-results
123
+ compression-level : 9
124
+ path : |
125
+ examples/server/bench/*.png
126
+ examples/server/bench/*.json
127
+ examples/server/bench/*.log
128
+
120
129
- name : Commit status
121
130
uses : Sibz/github-status-action@v1
122
131
with :
@@ -136,7 +145,6 @@ jobs:
136
145
examples/server/bench/predicted_tokens_seconds.png
137
146
examples/server/bench/kv_cache_usage_ratio.png
138
147
examples/server/bench/requests_processing.png
139
- examples/server/bench/requests_deferred.png
140
148
141
149
- name : Comment PR
142
150
uses : mshick/add-pr-comment@v2
@@ -155,25 +163,5 @@ jobs:
155
163
<p align="center">
156
164
<img width="100%" height="100%" src="${{ fromJSON(steps.imgur_step.outputs.imgur_urls)[2] }}" alt="kv_cache_usage_ratio" />
157
165
<img width="100%" height="100%" src="${{ fromJSON(steps.imgur_step.outputs.imgur_urls)[3] }}" alt="requests_processing"/>
158
- <img width="100%" height="100%" src="${{ fromJSON(steps.imgur_step.outputs.imgur_urls)[4] }}" alt="requests_deferred"/>
159
166
</p>
160
167
</detail>
161
-
162
- - name : Upload results
163
- if : ${{ github.event.pull_request }}
164
-
165
- with :
166
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
167
- path : ' examples/server/bench/*.png'
168
- title : |
169
- llama.cpp server benchmark results for ${{ github.job }} on ${{ env.RUNNER_LABEL }}: ${{ env.LLAMACPP_TOKENS_SECOND_AVG}}tk/s
170
- annotationLevel : ' success'
171
-
172
- - uses : actions/upload-artifact@v4
173
- with :
174
- name : benchmark-results
175
- compression-level : 9
176
- path : |
177
- examples/server/bench/*.png
178
- examples/server/bench/*.json
179
- examples/server/bench/*.log
0 commit comments