-
Notifications
You must be signed in to change notification settings - Fork 170
Update qwen3.5-bf16-b300-sglang and -mtp SGLang image to v0.5.12-cu130 #1422
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
Klaud-Cold
wants to merge
1
commit into
main
Choose a base branch
from
claude/issue-1154-qwen3.5-bf16-b300-sglang
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
−2
Open
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 |
|---|---|---|
|
|
@@ -2548,3 +2548,10 @@ | |
| description: | ||
| - "Update vLLM image from v0.20.2 to v0.21.0" | ||
| pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1402 | ||
|
|
||
| - config-keys: | ||
| - qwen3.5-bf16-b300-sglang | ||
| - qwen3.5-bf16-b300-sglang-mtp | ||
| description: | ||
| - "Update SGLang image from v0.5.11-cu130 to v0.5.12-cu130" | ||
| pr-link: XXX | ||
|
Check failure on line 2557 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 entry uses the literal placeholder
pr-link: XXXinstead of the actual PR URL. All other entries in this file follow the canonical formatpr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/<num>, so this should behttps://github.com/SemiAnalysisAI/InferenceX/pull/1422before merging.Extended reasoning...
What the bug is
The diff adds a new entry to
perf-changelog.yamlat line 2557 withpr-link: XXX. The stringXXXis clearly an unfilled template placeholder that was supposed to be replaced with the actual PR URL before opening this PR.How it manifests
Every prior entry in
perf-changelog.yamlfollows the same convention. Looking at the four most recent entries that come immediately before this one (lines 2532, 2538, 2544, 2550), each uses the canonical format:The new entry breaks this pattern by retaining a template placeholder.
Step-by-step proof
perf-changelog.yamland look at the four most recent entries that come immediately before the newly added block:pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/...pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/...pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/...pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/1402pr-link: XXXXXXis not a URL and does not match the established pattern.https://github.com/SemiAnalysisAI/InferenceX/pull/1422.Why existing code doesn't prevent it
The changelog convention is enforced by author discipline rather than by a schema check — YAML happily parses
XXXas a string, so neither YAML validation nor any current CI step rejects the placeholder. The PR description even references #1154 as context, but the changelog placeholder was never filled in.Impact
Any link-following automation, release-notes generator, or human reader navigating the changelog will hit a dead string (
XXX) instead of a real PR link for this entry. While the file still parses, the structuredpr-linkfield becomes useless for this row and breaks the documented convention going forward.How to fix
Replace line 2557 with: