-
Notifications
You must be signed in to change notification settings - Fork 293
kimik2.5-fp4-b200-vllm: expand concurrency sweep to 1-128 #1677
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
+10
−4
Merged
Changes from all commits
Commits
Show all changes
3 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.yamlentry haspr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/<TODO>instead of/pull/1677. The literal<TODO>produces a broken URL (encoded as%3CTODO%3E, 404s) and breaks any downstream tooling that parsespr-linkas a numeric PR id. Replace<TODO>with1677before merging — the PR's own Cursor Bugbot summary already flags this placeholder.Extended reasoning...
What the bug is
At
perf-changelog.yaml:3509the newly appended entry contains:The string
<TODO>is a literal placeholder that was never replaced with the real PR number (1677). I verified this by runninggit show HEAD -- perf-changelog.yamlon commitbfa691a(the PR's tip) — the added line in the commit itself readspull/<TODO>, notpull/1677. The PR description's own embedded Cursor Bugbot summary calls this out explicitly: "PR link still has a<TODO>placeholder".Addressing the refutation
One verifier argued the PR diff shows
1677and is authoritative over the local checkout. I re-checked directly:git show bfa691a -- perf-changelog.yaml(the PR's tip commit) shows the added line aspr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/<TODO>. The file in the working tree atperf-changelog.yaml:3509also contains<TODO>. Whatever diff rendering showed1677does not match the actual committed contents on this branch. If the PR is merged as-is frombfa691a,<TODO>lands inmain.Impact
<and>as%3C/%3E, so the rendered link becomeshttps://github.com/SemiAnalysisAI/InferenceX/pull/%3CTODO%3E, which 404s.perf-changelog.yamluses a real integer PR id (e.g.1668,1669,1670just above,1544, etc.). Any consumer that parses the trailing path component as an int (int(url.rsplit('/', 1)[-1])) will throwValueErroron this row.Step-by-step proof
Fix
One-character cleanup: replace
<TODO>with1677on line 3509. The PR number is already known (this PR is #1677, as referenced throughout the description).