-
Notifications
You must be signed in to change notification settings - Fork 155
[NV] Add DSV4-pro GB300 vLLM recipes #1238
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
Merged
+991
−104
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
58229f0
Add recipes
hjjq 3d48dd1
fix benchmark, fix srt-slurm branch
hjjq 8359a19
update runner
hjjq f429c24
Merge branch 'main' into dsv4-gb300-vllm
cquil11 fa93b4d
chore: resolve dsv4 gb300 changelog merge markers
alec-flowers 2107b42
fix: use gb300 local dsv4 model path
alec-flowers 9ffe98b
ci: support runner filtering for test configs
alec-flowers dd67fb5
fix: isolate gb300 srt setup state
alec-flowers 5c03684
fix: remove unsupported gb300 recipe metadata
alec-flowers aea8e06
clean up
hjjq 6f39a32
Merge branch 'main' into dsv4-gb300-vllm
hjjq f9a1cc4
fix: support gb300 cw vllm launcher
alec-flowers c74002e
Merge branch 'main' into dsv4-gb300-vllm
cquil11 dd872dd
gb300-cw: import squash files via srun under flock
cquil11 42e339e
Pin dsv4-fp4-gb300-dynamo-vllm to gb300-nv runners
cquil11 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
...marks/multi_node/srt-slurm-recipes/vllm/deepseek-v4/8k1k/disagg-gb300-1p17d-tep4-tp4.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| name: "svf-vllm-disagg-gb300-1p17d-tep4-tp4" | ||
|
|
||
| # Topology: 1 prefill (TEP=4) + 17 decode (TP=4). 18 GB300 nodes (1P + 17D = 72 | ||
| # GPUs at 4 GPUs/node), NATS/etcd colocated on the prefill node. | ||
| # Wide-decode point at concurrency 18 — each decode worker holds a | ||
| # single replica. | ||
| model: | ||
| path: "deepseek-v4-pro" | ||
| container: "vllm/vllm-openai:v0.20.0-ubuntu2404" | ||
| precision: "fp4" | ||
|
|
||
| dynamo: | ||
| install: true | ||
| wheel: "1.2.0.dev20260426" | ||
|
|
||
| setup_script: vllm-container-deps.sh | ||
|
|
||
| slurm: | ||
| time_limit: "8:00:00" | ||
|
|
||
| health_check: | ||
| max_attempts: 1440 | ||
| interval_seconds: 10 | ||
|
|
||
| resources: | ||
| gpu_type: "gb300" | ||
| gpus_per_node: 4 | ||
| prefill_nodes: 1 | ||
| decode_nodes: 17 | ||
| prefill_workers: 1 | ||
| decode_workers: 17 | ||
| gpus_per_prefill: 4 | ||
| gpus_per_decode: 4 | ||
|
|
||
| frontend: | ||
| type: dynamo | ||
| enable_multiple_frontends: false | ||
|
|
||
| backend: | ||
| type: vllm | ||
| connector: null | ||
| prefill_environment: | ||
| TILELANG_CLEANUP_TEMP_FILES: "1" | ||
| VLLM_USE_NCCL_SYMM_MEM: "1" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
| NCCL_MNNVL_ENABLE: "1" | ||
| NCCL_NVLS_ENABLE: "1" | ||
| decode_environment: | ||
| TILELANG_CLEANUP_TEMP_FILES: "1" | ||
| VLLM_USE_NCCL_SYMM_MEM: "1" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
| NCCL_MNNVL_ENABLE: "1" | ||
| NCCL_NVLS_ENABLE: "1" | ||
|
|
||
| vllm_config: | ||
| prefill: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| served-model-name: "deepseek-ai/DeepSeek-V4-Pro" | ||
| kv-cache-dtype: "fp8" | ||
| tensor-parallel-size: 4 | ||
| pipeline-parallel-size: 1 | ||
| enable-expert-parallel: true | ||
| enforce-eager: true | ||
| max-model-len: 16384 | ||
| max-num-seqs: 256 | ||
| max-num-batched-tokens: 16384 | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| no-enable-flashinfer-autotune: true | ||
| no-async-scheduling: true | ||
| block-size: 256 | ||
| gpu-memory-utilization: 0.9 | ||
| enable-ep-weight-filter: true | ||
| no-disable-hybrid-kv-cache-manager: true | ||
| enable-sleep-mode: true | ||
| decode: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| served-model-name: "deepseek-ai/DeepSeek-V4-Pro" | ||
| kv-cache-dtype: "fp8" | ||
| tensor-parallel-size: 4 | ||
| pipeline-parallel-size: 1 | ||
| max-model-len: 16384 | ||
| max-num-seqs: 512 | ||
| max-cudagraph-capture-size: 512 | ||
| max-num-batched-tokens: 512 | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| block-size: 256 | ||
| compilation-config: '{"cudagraph_mode":"FULL_DECODE_ONLY","mode":0}' | ||
| gpu-memory-utilization: 0.9 | ||
| stream-interval: 50 | ||
| no-disable-hybrid-kv-cache-manager: true | ||
| enable-ep-weight-filter: true | ||
| all2all-backend: "flashinfer_nvlink_one_sided" | ||
| no-enable-flashinfer-autotune: true | ||
| enable-sleep-mode: true | ||
| tokenizer-mode: deepseek_v4 | ||
|
|
||
| benchmark: | ||
| type: "sa-bench" | ||
| isl: 8192 | ||
| osl: 1024 | ||
| concurrencies: "18" | ||
| req_rate: "inf" | ||
| tokenizer_mode: "deepseek_v4" | ||
| use_chat_template: true |
114 changes: 114 additions & 0 deletions
114
...hmarks/multi_node/srt-slurm-recipes/vllm/deepseek-v4/8k1k/disagg-gb300-1p6d-dep4-tp4.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,114 @@ | ||
| name: "svf-vllm-disagg-gb300-1p6d-dep4-tp4" | ||
|
|
||
| # Topology: 1 prefill (DEP=4) + 6 decode (TP=4). 7 GB300 nodes (1P + 6D = 28 | ||
| # GPUs at 4 GPUs/node) plus a dedicated NATS/etcd infra node. Low-mid curve | ||
| # point at concurrency 192. | ||
| model: | ||
| path: "deepseek-v4-pro" | ||
| container: "vllm/vllm-openai:v0.20.0-ubuntu2404" | ||
| precision: "fp4" | ||
|
|
||
| dynamo: | ||
| install: true | ||
| wheel: "1.2.0.dev20260426" | ||
|
|
||
| setup_script: vllm-container-deps.sh | ||
|
|
||
| slurm: | ||
| time_limit: "8:00:00" | ||
|
|
||
| health_check: | ||
| max_attempts: 1440 | ||
| interval_seconds: 10 | ||
|
|
||
| resources: | ||
| gpu_type: "gb300" | ||
| gpus_per_node: 4 | ||
| prefill_nodes: 1 | ||
| decode_nodes: 6 | ||
| prefill_workers: 1 | ||
| decode_workers: 6 | ||
| gpus_per_prefill: 4 | ||
| gpus_per_decode: 4 | ||
|
|
||
| infra: | ||
| etcd_nats_dedicated_node: true | ||
|
|
||
| frontend: | ||
| type: dynamo | ||
| enable_multiple_frontends: false | ||
|
|
||
| backend: | ||
| type: vllm | ||
| connector: null | ||
| prefill_environment: | ||
| TILELANG_CLEANUP_TEMP_FILES: "1" | ||
| VLLM_USE_NCCL_SYMM_MEM: "1" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
| NCCL_MNNVL_ENABLE: "1" | ||
| NCCL_NVLS_ENABLE: "1" | ||
| TORCH_SYMMMEM: "NVSHMEM" | ||
| decode_environment: | ||
| TILELANG_CLEANUP_TEMP_FILES: "1" | ||
| VLLM_USE_NCCL_SYMM_MEM: "1" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
| NCCL_MNNVL_ENABLE: "1" | ||
| NCCL_NVLS_ENABLE: "1" | ||
| TORCH_SYMMMEM: "NVSHMEM" | ||
|
|
||
| vllm_config: | ||
| prefill: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| served-model-name: "deepseek-ai/DeepSeek-V4-Pro" | ||
| kv-cache-dtype: "fp8" | ||
| tensor-parallel-size: 1 | ||
| pipeline-parallel-size: 1 | ||
| data-parallel-size: 4 | ||
| data-parallel-rpc-port: 13345 | ||
| enable-expert-parallel: true | ||
| attention-config: '{"use_fp4_indexer_cache": true}' | ||
| moe-backend: "deep_gemm_mega_moe" | ||
| enforce-eager: true | ||
| max-model-len: 16384 | ||
| max-num-seqs: 256 | ||
| max-num-batched-tokens: 16384 | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| no-enable-flashinfer-autotune: true | ||
| no-async-scheduling: true | ||
| block-size: 256 | ||
| gpu-memory-utilization: 0.9 | ||
| enable-ep-weight-filter: true | ||
| no-disable-hybrid-kv-cache-manager: true | ||
| enable-sleep-mode: true | ||
| decode: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| served-model-name: "deepseek-ai/DeepSeek-V4-Pro" | ||
| kv-cache-dtype: "fp8" | ||
| tensor-parallel-size: 4 | ||
| pipeline-parallel-size: 1 | ||
| max-model-len: 16384 | ||
| max-num-seqs: 512 | ||
| max-cudagraph-capture-size: 512 | ||
| max-num-batched-tokens: 512 | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| block-size: 256 | ||
| compilation-config: '{"cudagraph_mode":"FULL_DECODE_ONLY","mode":0}' | ||
| gpu-memory-utilization: 0.9 | ||
| stream-interval: 50 | ||
| no-disable-hybrid-kv-cache-manager: true | ||
|
alec-flowers marked this conversation as resolved.
|
||
| enable-ep-weight-filter: true | ||
| all2all-backend: "flashinfer_nvlink_one_sided" | ||
| no-enable-flashinfer-autotune: true | ||
| enable-sleep-mode: true | ||
| tokenizer-mode: deepseek_v4 | ||
|
|
||
| benchmark: | ||
| type: "sa-bench" | ||
| isl: 8192 | ||
| osl: 1024 | ||
| concurrencies: "192" | ||
| req_rate: "inf" | ||
| tokenizer_mode: "deepseek_v4" | ||
| use_chat_template: true | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.