Open
Conversation
Contributor
|
@mohiso22 can you fix the quickcheck pls? |
added 2 commits
April 7, 2026 09:29
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
vbaddi
reviewed
Apr 7, 2026
examples/image_text_to_text/models/qwen2_5_vl/multi_specialization_inference.py
Show resolved
Hide resolved
added 2 commits
April 8, 2026 11:16
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
quic-rishinr
requested changes
Apr 8, 2026
examples/image_text_to_text/models/qwen_vl/multi_specialization_inference.py
Outdated
Show resolved
Hide resolved
|
|
||
| def _generate_multi_frame_specialization( | ||
| self, | ||
| inputs: List[str] = None, |
Contributor
There was a problem hiding this comment.
nit: update the type annotation for inputs as inputs: Dict[str, torch.Tensor]
QEfficient/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py
Outdated
Show resolved
Hide resolved
4 tasks
added 5 commits
April 9, 2026 09:28
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.com>
Signed-off-by: Mohit Soni <mohisoni@qti.qualcomm.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.
Adds multi-specialization support for Qwen2.5-VL and Qwen3-VL, enabling the vision encoder to be compiled with multiple resolution configurations (height/width/num_frames as lists) in one shot.
Introduces a dedicated _generate_multi_frame_specialization inference path that selects the right specialization at runtime, along with example scripts for both model families.