-
Notifications
You must be signed in to change notification settings - Fork 175
[Klaud Cold] minimaxm2.5-fp8-mi325x: add SHUFFLE_KV_CACHE_LAYOUT=1 + ROCM_AITER_FA backend #1549
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
functionstackx
wants to merge
2
commits into
main
Choose a base branch
from
klaud-cold/minimaxm2.5-fp8-mi325x-aiter-fa-shuffle-kv
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.
+9
−1
Open
Changes from all commits
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
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 at line 3076 has
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXX— the literal placeholderXXXwas never replaced with1549. This 404s and breaks any tooling that parses pr-link → merged PR id. Trivial fix: replaceXXXwith1549.Extended reasoning...
What the bug is
The newly added entry in
perf-changelog.yaml(lines 3071-3076) for this PR uses the literal placeholder stringXXXin itspr-linkfield rather than the actual PR number1549:Note on apparent contradiction with the PR diff: The PR diff rendered above shows
pull/1549in the added line, but that is a substitution performed by the PR-rendering tooling — the actual on-disk / committed content ispull/XXX. This was verified two ways: (1)Read perf-changelog.yamlreturnspull/XXXon line 3076, and (2)git show c813cb4 -- perf-changelog.yamlshows the committed hunk containspull/XXX. The PR description itself correctly references #1549, so the author clearly intended 1549 and simply forgot to substitute the placeholder before committing.Why the convention is clear
Every other entry in
perf-changelog.yamluses a real numeric PR id —pull/1548,pull/1546,pull/1521,pull/1411, etc. There is no precedent forXXXas an intentional sentinel anywhere in the file. This is unambiguously an unsubstituted template, not project convention.Impact
https://github.com/SemiAnalysisAI/InferenceX/pull/XXX404s — anyone clicking the link in the changelog gets a broken page.pr-linkto associateconfig-keyswith merged PR numbers (e.g., for generating release notes, dashboards, or change-attribution reports) will either fail or produce garbage on this entry.Step-by-step proof
perf-changelog.yamland jump to line 3076. The line reads exactly:pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXX.git show c813cb4 -- perf-changelog.yaml | tail. The added hunk includes+ pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/XXX— confirming the placeholder is in the committed blob, not a working-tree edit.https://github.com/SemiAnalysisAI/InferenceX/pull/XXX— it 404s (XXXis not a valid PR number).pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1548— numeric, valid, matches the file-wide convention.Fix
One-character (well, three-character) edit on
perf-changelog.yaml:3076:Severity is nit — the recipe change itself (the
.shfile) is fine; this is purely changelog hygiene. Worth flagging because the broken link is permanent in git history if not fixed before merge.