-
Notifications
You must be signed in to change notification settings - Fork 156
[NV] update minimaxm2.5-fp8-b200-vllm #1068
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b904003
update Gemm flag
hshrivastava-droid 300a69d
update PR number
hshrivastava-droid dbcd373
uodate conc
hshrivastava-droid 0241e60
Merge branch 'main' into minimaxm2.5-fp8-b200-vllm-v2
hshrivastava-droid 64b721e
update conc
hshrivastava-droid 568ced6
Merge branch 'main' into minimaxm2.5-fp8-b200-vllm-v2
hshrivastava-droid c906b8a
Merge branch 'main' into minimaxm2.5-fp8-b200-vllm-v2
hshrivastava-droid 5018fcc
Merge branch 'main' into minimaxm2.5-fp8-b200-vllm-v2
hshrivastava-droid d569911
Merge branch 'main' into minimaxm2.5-fp8-b200-vllm-v2
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
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
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.
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.
🔴 The B300 benchmark script (
benchmarks/single_node/minimaxm2.5_fp8_b300.sh) was not updated to match the env var change made to the B200 script in this PR. The B300 script explicitly documents that it "reuses the existing MiniMax-M2.5 FP8 B200 vLLM recipe as-is", so it should be updated in the same PR to replaceVLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlwithVLLM_FLOAT32_MATMUL_PRECISION=high.Extended reasoning...
What the bug is and how it manifests
This PR updates
benchmarks/single_node/minimaxm2.5_fp8_b200.sh(line 27) to replaceexport VLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlwithexport VLLM_FLOAT32_MATMUL_PRECISION=high. However, the companion B300 script (benchmarks/single_node/minimaxm2.5_fp8_b300.sh) was not updated and still exportsVLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlat line 31. After this PR merges, the two scripts will be out of sync with different environment configurations.The specific code path that triggers it
The B300 script contains an explicit design comment at lines 3–5: "this script reuses the existing MiniMax-M2.5 FP8 B200 vLLM recipe as-is until B300-specific tuning is available." This is corroborated by the
perf-changelog.yamlentry forminimaxm2.5-fp8-b300-vllmwhich also states it reuses the B200 recipe as-is. The deliberate design intent is for B300 to mirror B200 until independent tuning is done.Why existing code doesn't prevent it
There is no automated mechanism to enforce parity between the B200 and B300 scripts. The only enforcement is the human convention expressed in the B300 comment, which was overlooked in this PR when only the B200 script was modified.
What the impact would be
After this PR merges, running benchmarks on B300 will use the old
VLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlsetting, while B200 uses the newVLLM_FLOAT32_MATMUL_PRECISION=highsetting. Since the env var was presumably changed on B200 for correctness or performance reasons (possiblymnnvlwas incorrect or suboptimal on this hardware), B300 will be benchmarked under suboptimal or incorrect conditions — producing results that are not comparable to B200 and do not reflect the intended configuration.How to fix it
In
benchmarks/single_node/minimaxm2.5_fp8_b300.shat line 31, replace:export VLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlwith:
export VLLM_FLOAT32_MATMUL_PRECISION=highStep-by-step proof
export VLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvlexport VLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvl— matching B200 as intendedexport VLLM_FLOAT32_MATMUL_PRECISION=highVLLM_FLOAT32_MATMUL_PRECISION=high, B300 usesVLLM_FLASHINFER_ALLREDUCE_BACKEND=mnnvl