[Bugfix] fix qwen3vl hang when --mm-enable-dp-encoder is enable#20759
[Bugfix] fix qwen3vl hang when --mm-enable-dp-encoder is enable#20759HaiShaw merged 2 commits intosgl-project:mainfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves a significant operational issue in the Qwen3-VL model, preventing it from hanging when specific distributed encoding features are activated. By correctly configuring tensor parallelism for a key embedding layer, the change ensures the model functions as expected in distributed environments, improving stability and reliability. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request addresses a hang issue in the Qwen3-VL model when --mm-enable-dp-encoder is enabled. The fix correctly disables tensor parallelism for the VocabParallelEmbedding of position embeddings in this scenario.
I've identified a potential issue where an assertion error could occur if both --mm-enable-dp-encoder and --enable-dp-attention are enabled simultaneously. I've provided a suggestion to prevent this by ensuring use_attn_tp_group is also disabled when data parallelism is used for the vision encoder.
|
/tag-and-rerun-ci |
|
@Lzhang-hub @mickqian Please have a review. |
|
@ZLkanyo009 |
|
I think we can make the final change: is_dp_attention_enabled() and not use_data_parallel, otherwise the two options dp_attention and mm_dp_encoder might conflict. |
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
bf603a6 to
ff8de6a
Compare
Motivation
The Qwen3-VL type model hangs during forward when --mm-enable-dp-encoder is enabled. This is because the VocabParallelEmbedding part remains as TP8 after enabling --mm-enable-dp-encoder, when it should actually be TP1. Therefore, this PR is needed to fix the issue.
Accuracy Tests
before:
hang
after:
Evaluating...