Skip to content

Commit 2b89299

Browse files
authored
Fix vLLM benchmark setup on HPU runners (#100)
Signed-off-by: Huy Do <[email protected]>
1 parent 81c4dc6 commit 2b89299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/vllm-benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ jobs:
250250
251251
pushd vllm-benchmarks/vllm
252252
git checkout "${HEAD_SHA}"
253-
rm .buildkite/performance-benchmarks/tests/*.json
253+
rm .buildkite/performance-benchmarks/tests/*.json || true
254254
popd
255255
256256
# Set the list of benchmarks we want to cover in this runner
@@ -310,7 +310,7 @@ jobs:
310310
311311
- name: Authenticate with AWS
312312
# AWS CUDA runners already have access to the bucket via its runner IAM role
313-
if: env.DEVICE_NAME == 'rocm' || contains(env.DEVICE_TYPE, 'B200')
313+
if: env.DEVICE_NAME == 'rocm' || env.DEVICE_NAME == 'hpu' || contains(env.DEVICE_TYPE, 'B200') || contains(matrix.runner, 'gnr')
314314
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
315315
with:
316316
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_upload-benchmark-results

0 commit comments

Comments
 (0)