"src/diffusers/models/controlnets/controlnet_sparsectrl.py" did not exist on "6a05b274cc503276a4c1ac22a451df9184a9f761"
Unverified Commit 737d73ed authored by Yiyu Liu's avatar Yiyu Liu Committed by GitHub
Browse files

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

parent ebd0e1c1
...@@ -1620,7 +1620,7 @@ class ServerArgs: ...@@ -1620,7 +1620,7 @@ class ServerArgs:
parser.add_argument( parser.add_argument(
"--flashinfer-mxfp4-moe-precision", "--flashinfer-mxfp4-moe-precision",
type=str, type=str,
choices=["mxfp4", "bf16"], choices=["default", "bf16"],
default=ServerArgs.flashinfer_mxfp4_moe_precision, default=ServerArgs.flashinfer_mxfp4_moe_precision,
help="Choose the computation precision of flashinfer mxfp4 moe", help="Choose the computation precision of flashinfer mxfp4 moe",
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment