-
Notifications
You must be signed in to change notification settings - Fork 224
GB200 DSv4 vLLM agentic full sweep (3p2d TEP8/TP8 + 2p1d DEP8/DEP8) #2122
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
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -4643,3 +4643,12 @@ | |
| - "Recipes sourced from NVIDIA/srt-slurm branch sa-submission-q2-2026 (gb300_nvfp4 MTP recipes)" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1799 | ||
|
|
||
| - config-keys: | ||
| - dsv4-fp4-gb200-dynamo-vllm-agentic-3p2d-tep8-tp8 | ||
| - dsv4-fp4-gb200-dynamo-vllm-agentic-2p1d-dep8-dep8 | ||
| description: | ||
| - "Full agentic-coding sweep of the DSv4 FP4 GB200 dynamo-vllm disagg topologies on the June 21 AgentX corpus" | ||
| - "3p2d TEP8 prefill / TP8 decode (40 inference GPUs): c4-c80" | ||
| - "2p1d DEP8 prefill / DEP8 decode (24 inference GPUs): c32-c256 including exploratory tail past the c160 normalized-throughput peak" | ||
| - "Lower 3p2d prefill gpu-memory-utilization 0.9 -> 0.85: both first-pass attempts OOMed on prefill serving-time transients (sparse-indexer logits at c64, DeepGEMM JIT at c4) with <1 GiB free per GPU" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/2122 | ||
|
Comment on lines
+4646
to
+4654
Contributor
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. 🟡 Nit (pre-existing style rule): per AGENTS.md line 7, PR titles and descriptions must be bilingual — the title needs a Extended reasoning...What the rule is. AGENTS.md line 7 states: "PR and GitHub-issue titles & descriptions must be bilingual — include a Simplified Chinese version in addition to English. Title format: What this PR has. The title is "GB200 DSv4 vLLM agentic full sweep (3p2d TEP8/TP8 + 2p1d DEP8/DEP8)" — no Sibling PRs confirm the convention. Recently-merged neighbors in Impact. Purely a policy/metadata issue. No code path is affected, the sweep runs regardless, and the changelog YAML itself has no bilingual requirement. But the rule is documented as mandatory-for-every-PR, so it is worth flagging. Step-by-step proof.
How to fix. In the GitHub PR UI, edit the title to append |
||
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 new perf-changelog entry has
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/PLACEHOLDER— a forgotten template token. This isn't just a dead link:utils/validate_perf_changelog.pyonly accepts either the canonical.../pull/2122URL or the literal placeholdersXXX/.../pull/XXX, so the changelog validator will hard-fail CI until fixed. ReplacePLACEHOLDERwith2122.Extended reasoning...
The bug
The new entry at
perf-changelog.yaml:4645ends with:The literal string
PLACEHOLDERis a forgotten template token that no other entry in the file uses. The three immediately-preceding entries all use their real PR numbers (pull/2113,pull/2114,pull/2115), so the convention is clear — and per PR metadata this is PR #2122, so the value should behttps://github.com/SemiAnalysisAI/InferenceX/pull/2122.Why this fails CI (not just a dead link)
utils/validate_perf_changelog.pydefines the set of accepted placeholder tokens for PR-authored runs:and
validate_added_pr_link(lines 144-160) requires the link to match either the canonical.../pull/<pr_number>URL or one of those two placeholder tokens:Step-by-step proof
pr_number=2122.pr-link="https://github.com/SemiAnalysisAI/InferenceX/pull/PLACEHOLDER".expected = "https://github.com/SemiAnalysisAI/InferenceX/pull/2122"— does not match.link in PR_LINK_PLACEHOLDERS— the set only contains"XXX"and".../pull/XXX", so"PLACEHOLDER"/".../pull/PLACEHOLDER"is not a member.ChangelogValidationErroris raised → the changelog-validation CI job fails.Impact
Fix
One-token change on line 4645: