-
Notifications
You must be signed in to change notification settings - Fork 193
MiniMax-M3 MXFP8 full sweep config for GB200 #1734
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
Open
Oseltamivir
wants to merge
13
commits into
main
Choose a base branch
from
feat/minimax-m3-gb200-sweep
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
bbdd923
feat: MiniMax-M3 MXFP8 full sweep config for GB200
Oseltamivir dbf5135
chore: update perf-changelog pr-link to #1734
Oseltamivir 12a1da5
Merge branch 'main' into feat/minimax-m3-gb200-sweep
Oseltamivir ed63c1e
feat: switch GB200 M3 to ai-dynamo vllm-runtime 1.3.0 image
Oseltamivir 9b1fbfa
Merge branch 'main' into feat/minimax-m3-gb200-sweep
Oseltamivir 8738f42
fix: use enroot registry syntax (nvcr.io#) for GB200 M3 image
Oseltamivir 3415fb4
feat: convert MiniMax-M3 GB200 sweep to fully disaggregated inference
Oseltamivir 2e7938f
Merge branch 'main' into feat/minimax-m3-gb200-sweep
Oseltamivir 803cd20
fix: restore NIXL-bearing image for M3 GB200 disagg + enable MNNVL KV…
Oseltamivir 1320056
feat: rack-scale wide-EP (DeepSeek megamoe) M3 GB200 disagg + FLASHINFER
Oseltamivir 94decf2
Merge branch 'main' into feat/minimax-m3-gb200-sweep
Oseltamivir c8cd567
feat: tune 1k1k low-conc latency + add 8k1k sweep for M3 GB200
Oseltamivir c806aa2
Merge branch 'main' into feat/minimax-m3-gb200-sweep
Oseltamivir 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
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
118 changes: 118 additions & 0 deletions
118
...ulti_node/srt-slurm-recipes/vllm/minimax-m3-gb200-fp8/1k1k/disagg-gb200-1p1d-dep8-4n.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,118 @@ | ||
| name: "minimax-m3-vllm-disagg-gb200-1p1d-dep8-1k1k" | ||
|
|
||
| # MiniMax-M3 disaggregated 1P+1D recipe for GB200 (mid curve, wide EP). | ||
| # Prefill DEP8 (DP-attn + EP across 8 GPU / 2 nodes) -> NixlConnector -> | ||
| # Decode DEP8 (8 GPU / 2 nodes) = 4 nodes. Rack-scale expert parallel | ||
| # over the NVL72 NVLink fabric -- the regime where GB200 pulls ahead of | ||
| # B200 (capped at an 8-GPU NVLink island). M3 has 128 routed experts so | ||
| # EP8 shards 16 experts/rank. FLASHINFER attention, block-size 128. | ||
|
|
||
| model: | ||
| path: "minimax-m3-mxfp8" | ||
| container: "vllm/vllm-openai:minimax-m3" | ||
| precision: "fp8" | ||
|
|
||
| dynamo: | ||
| install: true | ||
| wheel: "1.2.0.dev20260526" | ||
|
|
||
| slurm: | ||
| time_limit: "8:00:00" | ||
|
|
||
| health_check: | ||
| max_attempts: 720 | ||
| interval_seconds: 10 | ||
|
|
||
|
|
||
| resources: | ||
| gpu_type: "gb200" | ||
| gpus_per_node: 4 | ||
| prefill_nodes: 2 | ||
| decode_nodes: 2 | ||
| prefill_workers: 1 | ||
| decode_workers: 1 | ||
| gpus_per_prefill: 8 | ||
| gpus_per_decode: 8 | ||
|
|
||
| frontend: | ||
| type: dynamo | ||
| enable_multiple_frontends: false | ||
|
|
||
| backend: | ||
| type: vllm | ||
| connector: null | ||
|
|
||
| prefill_environment: | ||
| VLLM_ENGINE_READY_TIMEOUT_S: "3600" | ||
| VLLM_FLASHINFER_ALLREDUCE_BACKEND: "mnnvl" | ||
| # NIXL/UCX KV transfer over the NVL72 NVLink fabric (cuda_ipc) instead | ||
| # of TCP: UCX_CUDA_IPC_ENABLE_MNNVL=y enables cross-node NVLink IPC and | ||
| # NCCL_CUMEM_ENABLE=1 cuMem-allocates buffers so they are IPC-exportable. | ||
| UCX_MEMTYPE_CACHE: "n" | ||
| UCX_MEMTYPE_REG_WHOLE: "n" | ||
| UCX_TLS: "cuda_copy,cuda_ipc,tcp" | ||
| UCX_CUDA_IPC_ENABLE_MNNVL: "y" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
|
|
||
| decode_environment: | ||
| VLLM_ENGINE_READY_TIMEOUT_S: "3600" | ||
| VLLM_FLASHINFER_ALLREDUCE_BACKEND: "mnnvl" | ||
| # NIXL/UCX KV transfer over the NVL72 NVLink fabric (cuda_ipc) instead | ||
| # of TCP: UCX_CUDA_IPC_ENABLE_MNNVL=y enables cross-node NVLink IPC and | ||
| # NCCL_CUMEM_ENABLE=1 cuMem-allocates buffers so they are IPC-exportable. | ||
| UCX_MEMTYPE_CACHE: "n" | ||
| UCX_MEMTYPE_REG_WHOLE: "n" | ||
| UCX_TLS: "cuda_copy,cuda_ipc,tcp" | ||
| UCX_CUDA_IPC_ENABLE_MNNVL: "y" | ||
| NCCL_CUMEM_ENABLE: "1" | ||
|
|
||
| vllm_config: | ||
| prefill: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| tensor-parallel-size: 1 | ||
| pipeline-parallel-size: 1 | ||
| data-parallel-size: 8 | ||
| data-parallel-rpc-port: 13346 | ||
| enable-expert-parallel: true | ||
| enforce-eager: true | ||
| max-model-len: 2304 | ||
| max-num-seqs: 16 | ||
| max-num-batched-tokens: 16384 | ||
| block-size: 128 | ||
| attention-backend: FLASHINFER | ||
| language-model-only: true | ||
| gpu-memory-utilization: 0.9 | ||
| safetensors-load-strategy: "prefetch" | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| numa-bind: true | ||
| enable-sleep-mode: true | ||
| stream-interval: 32 | ||
|
|
||
| decode: | ||
| kv-transfer-config: '{"kv_connector": "NixlConnector", "kv_role": "kv_both"}' | ||
| tensor-parallel-size: 1 | ||
| pipeline-parallel-size: 1 | ||
| data-parallel-size: 8 | ||
| data-parallel-rpc-port: 13345 | ||
| enable-expert-parallel: true | ||
| max-model-len: 2304 | ||
| max-num-seqs: 512 | ||
| max-num-batched-tokens: 512 | ||
| max-cudagraph-capture-size: 512 | ||
| block-size: 128 | ||
| attention-backend: FLASHINFER | ||
| language-model-only: true | ||
| gpu-memory-utilization: 0.9 | ||
| safetensors-load-strategy: "prefetch" | ||
| trust-remote-code: true | ||
| no-enable-prefix-caching: true | ||
| numa-bind: true | ||
| enable-sleep-mode: true | ||
| stream-interval: 128 | ||
|
|
||
| benchmark: | ||
| type: "sa-bench" | ||
| isl: 1024 | ||
| osl: 1024 | ||
| concurrencies: "128x256x512" |
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.