-
Notifications
You must be signed in to change notification settings - Fork 294
[AMD] Update MiniMax-M3 FP8 MI355X ATOM image and serving args (0630) #1968
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 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
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
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 uses
pull/PLACEHOLDERas its pr-link, bututils/validate_perf_changelog.pyonly accepts either the canonicalpull/1968or the literal placeholderXXX(PR_LINK_PLACEHOLDERSat lines 24-27). This will fail the changelog validation gate β replacePLACEHOLDERwithXXX(auto-canonicalized topull/1968on merge) or with1968directly.Extended reasoning...
What the bug is
perf-changelog.yaml:4362sets:utils/validate_perf_changelog.pydefines the accepted pre-merge placeholders at lines 24-27:validate_added_pr_link()(lines 144-160) requires the link to be either the canonicalhttps://github.com/SemiAnalysisAI/InferenceX/pull/{pr_number}or a member ofPR_LINK_PLACEHOLDERS. The value.../pull/PLACEHOLDERis neither, so the check raisesChangelogValidationError.Where it triggers
utils/merge_with_reuse.shcallsprepare_perf_changelog_merge.py(bothresolve-conflictandcanonicalizesubcommands), which invokecompare_entries()βvalidate_added_pr_link().canonicalize_appended_links()also explicitly checksif link not in PR_LINK_PLACEHOLDERS. Sincemerge_with_reuse.shis the standard merge path, this blocks merging.XXX) confirms thatXXXis the accepted pre-merge placeholder β a real PR number is baked in on merge.Step-by-step proof
merge_with_reuse.shrunsprepare_perf_changelog_merge.py canonicalize.pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/PLACEHOLDER.validate_added_pr_link()computescanonical = 'https://github.com/SemiAnalysisAI/InferenceX/pull/1968'.link == canonicalβ False (PLACEHOLDERβ1968).link in PR_LINK_PLACEHOLDERS = {'XXX', '.../pull/XXX'}β False.ChangelogValidationError: new PR entry must use 'https://github.com/SemiAnalysisAI/InferenceX/pull/1968' or an XXX placeholder; found 'https://github.com/SemiAnalysisAI/InferenceX/pull/PLACEHOLDER'.How to fix
Replace
PLACEHOLDERwith the literal stringXXX:The canonicalize step will rewrite it to
.../pull/1968at merge time. Alternatively, bake in1968directly.