From 737d73ed5bcb5cd161c142551c7e43257e8aa130 Mon Sep 17 00:00:00 2001 From: Yiyu Liu Date: Wed, 10 Sep 2025 00:10:38 -0400 Subject: [PATCH] Fix: the default choice is wrong for flashinfer mxfp4 moe precision (#10253) --- python/sglang/srt/server_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/srt/server_args.py b/python/sglang/srt/server_args.py index 48e4e68a4..7cd48da0e 100644 --- a/python/sglang/srt/server_args.py +++ b/python/sglang/srt/server_args.py @@ -1620,7 +1620,7 @@ class ServerArgs: parser.add_argument( "--flashinfer-mxfp4-moe-precision", type=str, - choices=["mxfp4", "bf16"], + choices=["default", "bf16"], default=ServerArgs.flashinfer_mxfp4_moe_precision, help="Choose the computation precision of flashinfer mxfp4 moe", )