Fix: the default choice is wrong for flashinfer mxfp4 moe precision (#10253)

This commit is contained in:
Yiyu Liu
2025-09-10 12:10:38 +08:00
committed by GitHub
parent ebd0e1c18b
commit 737d73ed5b
+1 -1
View File
@@ -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",
)