[2/N][Feat][Perf] Add new warmup infrastructure for JITs. Add predicate filtering for JIT warmup, and migrate Inkling FA4 - #49315
Merged
MatthewBonanni merged 21 commits intoAug 11, 2026
Conversation
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com>
LopezCastroRoberto
marked this pull request as ready for review
July 21, 2026 13:33
LopezCastroRoberto
requested review from
AndreasKaratzas,
DarkLight1337,
ProExpertProg,
WoosukKwon,
houseroad,
mgoin,
robertgshaw2-redhat,
tlrmchlsmth,
yewentao256,
youkaichao and
ywang96
as code owners
July 21, 2026 13:33
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com>
40 tasks
Contributor
Author
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com>
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com>
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com>
Collaborator
|
/ci run |
|
✅ Triggered Buildkite CI #81339 for commit |
Collaborator
|
/ci run |
|
✅ CI is already running for this commit: https://buildkite.com/vllm/ci/builds/81533 |
4 tasks
Contributor
Author
|
/ci run |
|
✅ Triggered Buildkite CI #83330 for commit |
MatthewBonanni
approved these changes
Aug 11, 2026
3 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR migrates Inkling FA4 attention warmup to the shared JIT warmup contract introduced in #47451,
and deprecates the legacy CuTeDSL warmup path(there is a conflict with the Kimi K3 integration #50089 that prevents this deprecation from being completed. It will be addressed in a future PR).See #49349 for more context
Motivation
enable_jit_warmupand run Inkling FA4 warmup throughkernel_warmup().What Changed
VllmJitKernelwrapper.Deprecated the legacy CuTeDSL warmup registry(there is a conflict with the Kimi K3 integration [Model] Add Kimi K3 support: model files and kernels [1/N] #50089 that prevents this deprecation from being completed. It will be addressed in a future PR)._trace_dispatch(...)with_whenpredicate support.zip_inputs(...)plus_when.AST Warmup Engine Update
_trace_dispatch(...)now accepts_when=<predicate>.This lets warmup definitions attach a small AST-traced predicate that filters generated dispatch points before they become compile keys. The predicate uses the same simple Python subset as
dispatch(...): local assignments, helper calls, arithmetic, comparisons, and boolean expressions.