[Doc] Update ViT CUDA graph doc for mixed (image+video) inputs#40355
Merged
Isotr0py merged 1 commit intovllm-project:mainfrom Apr 21, 2026
Merged
[Doc] Update ViT CUDA graph doc for mixed (image+video) inputs#40355Isotr0py merged 1 commit intovllm-project:mainfrom
Isotr0py merged 1 commit intovllm-project:mainfrom
Conversation
Signed-off-by: shen-shanshan <467638484@qq.com>
Contributor
|
Documentation preview: https://vllm--40355.org.readthedocs.build/en/40355/ |
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates the documentation for CUDA graphs in multimodal models to reflect that video inference support is no longer experimental and that mixed image and video inputs per prompt are now supported. Examples and notes recommending the limitation of multi-modal inputs have been removed accordingly. I have no feedback to provide as there were no review comments.
20 tasks
Isotr0py
approved these changes
Apr 21, 2026
Copilot AI
pushed a commit
to hongbolv/vllm
that referenced
this pull request
Apr 22, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com> Co-authored-by: hongbolv <33214277+hongbolv@users.noreply.github.com>
baonudesifeizhai
pushed a commit
to baonudesifeizhai/vllm
that referenced
this pull request
Apr 23, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com>
yzong-rh
pushed a commit
to yzong-rh/vllm
that referenced
this pull request
Apr 23, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com> Signed-off-by: Yifan <yzong@redhat.com>
avinashsingh77
pushed a commit
to avinashsingh77/vllm
that referenced
this pull request
Apr 27, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com> Signed-off-by: Avinash Singh <avinashsingh.rcoem@gmail.com>
Lafunamor
pushed a commit
to Lafunamor/vllm
that referenced
this pull request
May 1, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com> Signed-off-by: Adrian <info@zzit.ch>
Copilot AI
pushed a commit
to hongbolv/vllm
that referenced
this pull request
May 7, 2026
…project#40355) Signed-off-by: shen-shanshan <467638484@qq.com> Co-authored-by: hongbolv <33214277+hongbolv@users.noreply.github.com>
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.
Purpose
Following #35963 and #38061, we have supported ViT CUDA graph image/video inference for Qwen3-VL respectively. Now we have demonstrated that it's also compatible for mixed (image+video) inputs (per prompt).
Since we have grouped and batched multi-modal inputs in
_execute_mm_encoder()throughgroup_and_batch_mm_kwargs(), each call formodel.embed_multimodal()orencoder_cudagraph_manager.execute()will only contain single modality.Thus, mixed inputs will be separated to different ViT processes (i.e., it's compatible for our CUDA graph implementation).
Test Plan
Based on #40335.
Test Result
Essential Elements of an Effective PR Description Checklist
supported_models.mdandexamplesfor a new model.