Support qwen3-omni with DP Encoder#14886
Open
apinge wants to merge 3 commits intosgl-project:mainfrom
Open
Conversation
5e89e16 to
4db2169
Compare
Signed-off-by: apinge <tong.qiu2@amd.com>
Signed-off-by: apinge <tong.qiu2@amd.com>
Signed-off-by: apinge <tong.qiu2@amd.com>
4db2169 to
6673203
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.
Motivation
Add support for Qwen3-Omni with vision model DP based on #13724
Modifications
Accuracy Tests
Tested Qwen/Qwen3-Omni-30B-A3B-Instruct
with dp
without dp
Benchmarking and Profiling
On H20, we benchmarked the server with the
--mm-enable-dp-encoderoption enabled against the baseline performance without any code modifications. We found that enabling--mm-enable-dp-encoderreduces TTFT for multi-modal workloads under some testing conditions.SGLANG_VLM_CACHE_SIZE_MB=0 python3 -m sglang.launch_server \ --model-path /root/workspace/Qwen3-Omni-30B-A3B-Instruct/ \ --host localhost \ --port 40000 \ --tp-size 4 \ --trust-remote-code \ --mem-fraction-static 0.85 \ --disable-radix-cache \ --cuda-graph-max-bs 32 \ --mm-attention-backend fa3 \ --attention-backend flashinfer\ --mm-enable-dp-encoderChecklist