Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,16 @@ class FlashinferTrtllmGenMoeBackendMXFP8Base:

@classmethod
def setUpClass(cls):
cls.model = "Qwen/Qwen3-30B-A3B-Instruct-2507"
cls.model = "zianglih/Qwen3-30B-A3B-Instruct-2507-MXFP8"
Comment thread
zianglih marked this conversation as resolved.
cls.base_url = DEFAULT_URL_FOR_TEST
cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
env={**os.environ, "SGLANG_ENABLE_JIT_DEEPGEMM": "False"},
other_args=[
"--quantization",
"mxfp8",
"--fp8-gemm-backend",
"flashinfer_trtllm",
"flashinfer_cutlass",
Comment thread
zianglih marked this conversation as resolved.
"--moe-runner-backend",
cls.backend,
"--tp-size",
Expand Down
Loading