-
Notifications
You must be signed in to change notification settings - Fork 186
Update vLLM version to v0.13.0 for NVIDIA configs #327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
0f1645b
8796275
7a3fdaa
be1e695
c683d18
59dae33
f547cf5
9cc728c
ca8f30f
9951db6
7433c55
7b4c76f
2f2377a
c290779
cd5ad1b
dac5bfa
8e1b8a7
159cec9
06b2938
ce9f4d9
a716627
7be0229
e13a2ec
f268bac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -208,6 +208,17 @@ run_benchmark_serving() { | |
| echo "Error: --result-dir is required" | ||
| return 1 | ||
| fi | ||
|
|
||
| # Check if git is installed, install if missing | ||
| if ! command -v git &> /dev/null; then | ||
| echo "git not found, installing..." | ||
| if command -v apt-get &> /dev/null; then | ||
| sudo apt-get update && sudo apt-get install -y git | ||
| else | ||
| echo "Error: Could not install git. Package manager not found." | ||
| return 1 | ||
| fi | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. H100 slurm runner missing container flags for git installThe PR adds git installation logic using Additional Locations (1) |
||
| fi | ||
|
|
||
| # Clone benchmark serving repo | ||
| local BENCH_SERVING_DIR=$(mktemp -d /tmp/bmk-XXXXXX) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ fi | |
|
|
||
| cat > config.yaml << EOF | ||
| kv-cache-dtype: fp8 | ||
| compilation-config: '{"pass_config":{"enable_fi_allreduce_fusion":true,"enable_noop":true}}' | ||
| compilation-config: '{"pass_config":{"fuse_allreduce_rms":true,"eliminate_noops":true}}' | ||
| async-scheduling: true | ||
| no-enable-prefix-caching: true | ||
| max-cudagraph-capture-size: 2048 | ||
|
|
@@ -64,7 +64,7 @@ run_benchmark_serving \ | |
| --input-len "$ISL" \ | ||
| --output-len "$OSL" \ | ||
| --random-range-ratio "$RANDOM_RANGE_RATIO" \ | ||
| --num-prompts "$NUM_PROMPTS" \ | ||
| --num-prompts $(( CONC * 10 )) \ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inconsistent num-prompts handling between B200 docker and slurm scriptsThe Additional Locations (1) |
||
| --max-concurrency "$CONC" \ | ||
| --result-filename "$RESULT_FILENAME" \ | ||
| --result-dir /workspace/ | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No error handling if git installation fails
The
sudo apt-get update && sudo apt-get install -y gitcommand has no error handling after it. If the installation fails (due to permission issues, network problems, or missing sudo privileges), the script silently continues to thegit clonecommand on line 225, which will then fail with a confusing error message. When apt-get is found but the install command fails, the function does not return an error code like it does for the missing package manager case.