-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
[Misc] Remove pad_for_cudagraphs from config #30143
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
LucasWilkinson
merged 19 commits into
vllm-project:main
from
neuralmagic:lwilkinson/remove-pad-for-cudagraphs-from-config
Jan 20, 2026
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
5af3bda
wip
LucasWilkinson 720cb5c
fix precommit
LucasWilkinson 1c200e0
fix
LucasWilkinson af19ccc
fix
LucasWilkinson d8f15ea
fix
LucasWilkinson 7487a07
fix
LucasWilkinson 8c763a9
reveiw comment
LucasWilkinson 1bc1b94
format
LucasWilkinson 804f3fc
format
LucasWilkinson 6038121
fix doc
LucasWilkinson d5ce3dc
add back warning
LucasWilkinson 7d6b35c
fix
LucasWilkinson 78f12a9
clean
LucasWilkinson 3e92b8b
fix
LucasWilkinson 012f2d9
clean
LucasWilkinson 6415dce
Merge branch 'main' into lwilkinson/remove-pad-for-cudagraphs-from-co…
MatthewBonanni a3930d4
Update test
MatthewBonanni 7e0fe86
Fix None value error
MatthewBonanni fa9034b
Fix hanging test
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.
In
test_mamba_cache_cg_paddingaCudagraphDispatcheris created and immediately used in thewhilecondition without ever callinginitialize_cudagraph_keys, sodispatchreturns aBatchDescriptorwithnum_tokensunchanged whenkeys_initializedis False. The conditionlen(example_prompts) == ...num_tokenstherefore stays true on every iteration and the loop appends forever, hanging the test before it exercises any logic. This test now never completes under any configuration.Useful? React with 👍 / 👎.