-
Notifications
You must be signed in to change notification settings - Fork 205
Update DSV4 TRT fused MHC image #1270
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 1 commit
Commits
Show all changes
5 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2148,3 +2148,10 @@ | |
| - "Disable TRTLLM fused MHC hyper-connection for eval servers via TRTLLM_MHC_ENABLE_FUSED_HC=0 because the current fused kernel corrupts DeepSeek-V4-Pro hidden size 7168 generations" | ||
| - "Keep this as eval-only PR validation until the TensorRT-LLM fused MHC kernel is guarded or supports hidden size 7168" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1233 | ||
|
|
||
| - config-keys: | ||
| - dsv4-fp4-b300-trt | ||
| description: | ||
| - "Update the TensorRT-LLM DeepSeek-V4-Pro image to ghcr.io/semianalysisai/trtllm-deepseek-v4:fix-mhc7168-eb20e9e" | ||
| - "Enable TRTLLM fused MHC by default now that the image includes the hidden-size 7168 fused-HC fix" | ||
| pr-link: TBD | ||
|
Check warning on line 2157 in perf-changelog.yaml
|
||
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 new perf-changelog.yaml entry uses 'pr-link: TBD' instead of a real URL. Every other entry uses a fully-qualified https://github.com/SemiAnalysisAI/InferenceX/pull/NNN URL, and the PR number (1270) is already known — please replace TBD with #1270 before merge. Validation accepts any string so CI passes, but the placeholder degrades traceability for downstream tooling.
Extended reasoning...
What this is: The new
perf-changelog.yamlentry added at line 2157 haspr-link: TBDas a placeholder rather than a real PR URL.Why it stands out: A grep confirms this is the only
pr-link: TBDin the entireperf-changelog.yaml— every other entry uses a fully-qualifiedhttps://github.com/SemiAnalysisAI/InferenceX/pull/NNNURL. The PR number is already known (#1270), so this is a straightforward fill-in. AGENTS.md documents the convention of using a placeholder while the PR is being prepared and replacing it with the real URL once the PR exists.Why it does not break CI:
utils/matrix_logic/validation.py:483declarespr_link: str = Field(alias="pr-link")— a plain string with no URL pattern validation.process_changelog.pyimportsChangelogEntrybut never references thepr_linkfield itself for sweep generation, so nothing breaks at runtime. That is why this is a nit (traceability/process oversight) rather than a normal bug.Impact: Downstream tooling and humans reading
perf-changelog.yamllose the link back to the PR that introduced this image bump. Anyone investigating a regression ondsv4-fp4-b300-trtto thefix-mhc7168-eb20e9eimage (or trying to understand why fused MHC was re-enabled by default) cannot click through to the discussion and diff.Step-by-step proof:
perf-changelog.yamlline 2157: the new entry's last line ispr-link: TBD.pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/N(e.g. line 2151 immediately above ispr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1233).utils/matrix_logic/validation.py:483definespr_linkas a plainstr, with noHttpUrlor regex constraint.Fix: Replace
pr-link: TBDon line 2157 withpr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1270before merge.