[Bugfix] Fix Qwen25VL packed_modules_mapping (#23604)

Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
Co-authored-by: Michael Goin <mgoin64@gmail.com>
This commit is contained in:
Jee Jee Li 2025-08-26 16:09:14 +08:00 committed by GitHub
parent ff77764f86
commit 9b5f64238f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -853,6 +853,7 @@ class Qwen2_5_VLForConditionalGeneration(nn.Module, SupportsMultiModal,
SupportsQuant):
packed_modules_mapping = {
"qkv_proj": ["q_proj", "k_proj", "v_proj"],
"gate_up_proj": ["gate_proj", "up_proj"],
}