-
Notifications
You must be signed in to change notification settings - Fork 186
Update minimaxm2.5-fp8-mi355x-vllm vLLM ROCm image to v0.21.0 #1410
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
functionstackx
merged 1 commit into
main
from
claude/issue-1154-minimaxm2.5-fp8-mi355x-vllm
May 16, 2026
Merged
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2493,3 +2493,9 @@ | |
| - "Update image tag to vllm/vllm-openai:v0.20.2" | ||
| - "Add DEP configs for B300 vLLM MTP" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1271 | ||
|
|
||
| - config-keys: | ||
| - minimaxm2.5-fp8-mi355x-vllm | ||
| description: | ||
| - "Update vLLM ROCm image from v0.19.0 to v0.21.0" | ||
| pr-link: XXX | ||
|
Check failure on line 2501 in perf-changelog.yaml
|
||
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.yamlentry setspr-link: XXXas a literal placeholder instead of a real URL. Every other entry uses the formhttps://github.com/SemiAnalysisAI/InferenceX/pull/<number>, andutils/merge_with_reuse.shrelies on the documentedpr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXXtemplate to auto-resolve changelog merge conflicts — itsblock.replace('/pull/XXX', ...)becomes a no-op and the subsequentendswith('/<pr>')assertion fails. Please replaceXXXwithhttps://github.com/SemiAnalysisAI/InferenceX/pull/1410before merge.Extended reasoning...
What the bug is
The new entry added at
perf-changelog.yaml:2496-2501ends with:Every other entry in the file (~250+) follows the convention
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/<number>, and the template documented inAGENTS.md(line 123) ispr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXX— i.e. a full URL whose trailingXXXis intended to be substituted with the actual PR number. The PR here committed the bare stringXXXinstead.Why this breaks tooling, not just style
utils/merge_with_reuse.shautomates resolution ofperf-changelog.yamlmerge conflicts by finding the last entry tagged withXXXand rewriting it to point at the real PR number. The relevant logic (around lines 134–160) does:With
pr-link: XXX:"XXX" in linkcheck still matches, so the entry is selected.block.replace("/pull/XXX", f"/pull/{pr}")is a no-op — the block containsXXXbut not/pull/XXX. Sopr-linkremains the literal stringXXX.last["pr-link"].endswith("/1410")then fires because"XXX".endswith("/1410")isFalse, aborting auto-resolution.Step-by-step proof (PR #1410 with a changelog conflict)
utils/merge_with_reuse.sh 1410to resolve aperf-changelog.yamlconflict on this PR.pr-linkisXXX, passes the"XXX" in linkguard.block.replace("/pull/XXX", "/pull/1410")— no match, block unchanged.pr-link: XXX.assert last["pr-link"].endswith("/1410")→AssertionError: last entry not for PR #: {...pr-link: XXX...}.If the changelog never conflicts during merge, the literal string
XXXis committed tomainas the permanent pr-link, leaving a traceless entry in a file that downstream tooling/dashboards treat as URL-bearing.Why existing validation does not catch it
utils/matrix_logic/validation.pyonly requirespr_linkto be astr, so Pydantic accepts"XXX". No CI check enforces the URL shape, so this slips through.Fix
Replace line 2501 with:
Or, if the intent is to defer substitution to
merge_with_reuse.sh, use the documented template formhttps://github.com/SemiAnalysisAI/InferenceX/pull/XXXso the script can rewrite it. Either form would be consistent with the rest of the file; the current bareXXXis neither.