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

This commit is contained in:
Yiyu Liu
2025-09-10 00:10:38 -04:00
committed by GitHub
parent ebd0e1c18b
commit 737d73ed5b

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",
)