[quantization] Precompute RoPE position embeddings in QuantQwen3VLTextModel#636
Draft
dvsav wants to merge 1 commit intoSamsung:mainfrom
Draft
[quantization] Precompute RoPE position embeddings in QuantQwen3VLTextModel#636dvsav wants to merge 1 commit intoSamsung:mainfrom
dvsav wants to merge 1 commit intoSamsung:mainfrom
Conversation
c03ba39 to
18a86b2
Compare
…tModel This PR implements precomputation of position_ids and position_embeddings in QuantQwen3VLTextModel. TICO-DCO-1.0-Signed-off-by: d.savchenkov <d.savchenkov@partner.samsung.com>
18a86b2 to
f0c112a
Compare
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.
What
This PR implements precomputation of
position_idsandposition_embeddingsinQuantQwen3VLTextModel.Why
The detailed motivation for this change is described in the issue Qwen3VL: Fixed Input Data Format At Inference Time.
Long story short:
tico/quantization/wrapq/wrappers/qwen_vl/quant_vision_model.pyortico/quantization/wrapq/wrappers/llama/quant_decoder_layer.py).position_idsandposition_embeddingsinQuantQwen3VLTextModelbecomes possible due to the fixation of THW and starting position of visual data within the input prompt.position_embeddingseliminates the need to wrap/quantizeQwen3VLTextRotaryEmbeddingmodule.BEFORE
AFTER
Notice that the warning
[QuantCheck] WARNING: 34 nodes without qparam detected (see logs).has disappeared.Unit Tests
test_quant_text_model.py
test_quant_model.py
test_quant_for_conditional_generation.py