Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/setup_vllm_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def parse_args() -> Any:
parser.add_argument(
"--to-benchmark-configs-dir",
type=str,
default=".buildkite/nightly-benchmarks/tests",
default=".buildkite/performance-benchmarks/tests",
action=ValidateDir,
help="a subset of vLLM benchmark configs to run on this runner",
required=True,
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vllm-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,19 +239,19 @@ jobs:

pushd vllm-benchmarks/vllm
git checkout "${HEAD_SHA}"
rm .buildkite/nightly-benchmarks/tests/*.json
rm .buildkite/performance-benchmarks/tests/*.json
popd

# Set the list of benchmarks we want to cover in this runner
python3 .github/scripts/setup_vllm_benchmark.py \
--from-benchmark-configs-dir vllm-benchmarks/benchmarks \
--to-benchmark-configs-dir vllm-benchmarks/vllm/.buildkite/nightly-benchmarks/tests \
--to-benchmark-configs-dir vllm-benchmarks/vllm/.buildkite/performance-benchmarks/tests \
--models "${MODELS}" \
--device "${DEVICE_NAME}"

pushd vllm-benchmarks/vllm
ls -lah .buildkite/nightly-benchmarks/tests
find .buildkite/nightly-benchmarks/tests -type f -exec cat {} \;
ls -lah .buildkite/performance-benchmarks/tests
find .buildkite/performance-benchmarks/tests -type f -exec cat {} \;
popd

- name: Run vLLM benchmark
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
-w /tmp/workspace \
"${DOCKER_IMAGE}"
)
docker exec -t "${container_name}" bash -c "cd vllm-benchmarks/vllm && bash .buildkite/nightly-benchmarks/scripts/run-performance-benchmarks.sh"
docker exec -t "${container_name}" bash -c "cd vllm-benchmarks/vllm && bash .buildkite/performance-benchmarks/scripts/run-performance-benchmarks.sh"

- name: Authenticate with AWS
# AWS CUDA runners already have access to the bucket via its runner IAM role
Expand Down
Loading