-
Notifications
You must be signed in to change notification settings - Fork 7.7k
feat(Qwen3.5): hybrid linear attention support PP+PD #19254
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
Closed
zhangxiaolei123456
wants to merge
22
commits into
sgl-project:main
from
bytedance-iaas:main_qwen3.5_0224_fix_pp
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
4ad99d7
Update qwen3_5.py
zhangxiaolei123456 109a473
Update qwen3_5.py
zhangxiaolei123456 f32e00f
Update qwen3_5.py
zhangxiaolei123456 9b4a7e0
Update qwen3_5.py
zhangxiaolei123456 ecb9d4b
Update qwen3_5.py
zhangxiaolei123456 23c41c1
Merge branch 'main' into main_qwen3.5_0224_fix_pp
zhangxiaolei123456 7481e12
Merge branch 'main' into main_qwen3.5_0224_fix_pp
zhangxiaolei123456 bdce5d1
Update qwen3_5.py
zhangxiaolei123456 0321307
Update model_runner_kv_cache_mixin.py
zhangxiaolei123456 8f6e92d
Update memory_pool.py
zhangxiaolei123456 16f58f3
Update memory_pool.py
zhangxiaolei123456 7b30482
Update prefill.py
zhangxiaolei123456 ba908f4
Update decode.py
zhangxiaolei123456 b20f236
Update model_runner_kv_cache_mixin.py
zhangxiaolei123456 e3483f0
Update model_runner_kv_cache_mixin.py
zhangxiaolei123456 cfad179
Update conn.py
zhangxiaolei123456 c8f6059
Update conn.py
zhangxiaolei123456 4822b6a
Create E=512,N=512,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=…
zhangxiaolei123456 58712ed
Update memory_pool.py
zhangxiaolei123456 b3675e2
Update conn.py
zhangxiaolei123456 1acc611
Update model_runner_kv_cache_mixin.py
zhangxiaolei123456 6ab83da
Update qwen3_vl.py
zhangxiaolei123456 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
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.
This logic to skip loading weights for layers not on the current pipeline parallel rank is duplicated in three other
load_weightsmethods in this file (at lines 925, 1091, and 1241). To improve maintainability and reduce code duplication, consider extracting this logic into a single helper function.