From 663037a7a053ae7c2d7353d5a6695aec2b2ee083 Mon Sep 17 00:00:00 2001 From: Yineng Zhang Date: Mon, 28 Apr 2025 11:53:22 -0700 Subject: [PATCH] feat: update is_fa3_default_architecture (#5854) --- python/sglang/srt/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/sglang/srt/utils.py b/python/sglang/srt/utils.py index ea7fa30b3..3a7f17db7 100644 --- a/python/sglang/srt/utils.py +++ b/python/sglang/srt/utils.py @@ -1973,6 +1973,8 @@ def is_fa3_default_architecture(hf_config): "MixtralForCausalLM", "Gemma2ForCausalLM", "Gemma3ForConditionalGeneration", + "Qwen3ForCausalLM", + "Qwen3MoeForCausalLM", } return architectures[0] in default_archs