-
Notifications
You must be signed in to change notification settings - Fork 176
[NV] H100 (Agg): migrate model path #1537
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
Ankur-singh
wants to merge
2
commits into
main
Choose a base branch
from
fix-h100-model-path
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 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,6 @@ fi | |
|
|
||
| nvidia-smi | ||
|
|
||
| if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi | ||
|
|
||
| export SGLANG_ENABLE_SPEC_V2=1 | ||
|
|
||
|
|
||
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 |
|---|---|---|
|
|
@@ -3050,3 +3050,14 @@ | |
| description: | ||
| - "Update SGLang image from v0.5.11-cu130 (5d old) to v0.5.12-cu130" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1475 | ||
|
|
||
| - config-keys: | ||
| - gptoss-fp4-h100-vllm | ||
| - minimaxm2.5-fp8-h100-vllm | ||
| - qwen3.5-fp8-h100-sglang | ||
| - qwen3.5-fp8-h100-sglang-mtp | ||
| description: | ||
| - "Migrate H100 agg model path to /mnt/numa1/shared/models/ (audit-recommended root); set HF_HUB_CACHE to container's ~/.cache/huggingface for eval dataset downloads" | ||
| - "Rewrite MODEL in launcher from HF id (org/name) to absolute local path under HF_HUB_CACHE_MOUNT; remove hf download from bench scripts so contract is staged-or-fail" | ||
| - "Reduce search-space to single (isl=1024, osl=1024, conc=4) point per config to verify model-path wiring end-to-end" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXXX | ||
|
Check failure on line 3063 in perf-changelog.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
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 new perf-changelog entry at line 3063 has
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXXX— the literal placeholderXXXXwas never replaced with the real PR number (1537). Every other recent entry in the file uses a real PR id, and per AGENTS.md this file is the audit trail linking config changes back to the PR that triggered them. Please replaceXXXXwith1537before merging.Extended reasoning...
What the bug is.
perf-changelog.yamlline 3063 reads:XXXXis a forgotten-substitution placeholder, not a real PR id. The author clearly intended to fill in a real number — the rest of the new entry (config-keys list and three-line description) is complete and substantive — but thepr-linkfield was left with its template value.Why this matters. Every other recent entry in the same file uses a real PR id, e.g.:
pull/1411pull/1528pull/1475AGENTS.mddescribesperf-changelog.yamlas the chronological audit trail linking benchmark config changes back to the PR that triggered them. An unfilledXXXXpermanently breaks that linkage for the four H100 agg configs touched by this change (gptoss-fp4-h100-vllm,minimaxm2.5-fp8-h100-vllm,qwen3.5-fp8-h100-sglang,qwen3.5-fp8-h100-sglang-mtp) once merged — anyone later trying to understand why those four configs were narrowed to a single(isl=1024, osl=1024, conc=4)point will hit a dead 404 link instead of this PR.Why nothing prevents it. There is no pre-commit or CI check that validates
perf-changelog.yamlpr-linkURLs resolve to a real PR; it relies on author discipline. The file is structured YAML butXXXXis still a syntactically valid string, so no schema validator will flag it either.Impact. Once merged, the link
https://github.com/SemiAnalysisAI/InferenceX/pull/XXXXwill 404 forever (GitHub does not have a PR numberedXXXX). The audit trail for these four H100 configs is severed. It is also non-trivial to fix post-merge because (a)perf-changelog.yamlis append-only by convention, and (b) reviewers in 6 months won't know to look forXXXXspecifically.Step-by-step proof.
perf-changelog.yaml: the new entry ends at line 3063 withpr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXXX.https://github.com/SemiAnalysisAI/InferenceX/pull/XXXX— GitHub will return 404 because no PR is numberedXXXX.pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1475— that one resolves to a real PR. So the convention in this file is clearly to use a real PR id.How to fix. One-character (well, four-character) substitution at
perf-changelog.yaml:3063: