-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
[Bugfix] Fix Basic Models Test #34818
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
vllm-bot
merged 26 commits into
vllm-project:main
from
MatthewBonanni:fix_basic_extra_init
Feb 19, 2026
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
2a25c4b
Fix
MatthewBonanni 1a40186
Fix
MatthewBonanni c617228
Fix
MatthewBonanni 6ac74b8
Make _update_block_size_for_backend fault-tolerant
MatthewBonanni dfed2a1
Workaround by limiting to MLA
MatthewBonanni 4065757
Try-except should no longer be necessary
MatthewBonanni 40d3782
Lazy allocate workspaces
MatthewBonanni d473952
Call immediately before initializing kv cache
MatthewBonanni aa9c7c9
Preserve block size validation
MatthewBonanni 819968f
Cleanup
MatthewBonanni 1f5281e
Merge branch 'main' into fix_basic_extra_init
robertgshaw2-redhat 74bb747
Run before executor construction
MatthewBonanni 37c252c
Fix tests that bypass EngineCore
MatthewBonanni 273dec2
Read backend selections from layers
MatthewBonanni fab3ee5
Move call from executor to worker
MatthewBonanni d3a0734
Compute chunked prefill workspace size lazily instead of being conser…
MatthewBonanni e856ffd
Make imports local to prevent circular dependency
MatthewBonanni ce3fc1c
Fix vllm config context
MatthewBonanni 5111418
Fix chunked local attention
MatthewBonanni 4bac453
Fix config context
MatthewBonanni e5ac83c
Fix ray executor
MatthewBonanni 99b3b3a
Re-add warning
MatthewBonanni f7b337a
Clean up
MatthewBonanni 982a892
Comment
MatthewBonanni 9b741db
Clean up
MatthewBonanni 3bb724a
Use min across groups
MatthewBonanni 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
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
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.
Is it important that we set the block size for these tests? Basically does this work around some conditional CUDA init issue?
Uh oh!
There was an error while loading. Please reload this page.
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.
Yes, these tests bypass the
EngineCore, which is where the update now happens. As an alternative, we could set the default in theCacheConfigconstructor, but we'd need to add complexity toCacheConfigto keep track of whether the block size was set by default or by the user (one is overridable, the other is not). I figured this was a valid workaround for these two tests