Views
No views yet
mlp.gate) and the
lm_head are kept at full precision; the attention and expert projection layers
are quantized to NVFP4.lm_head, MoE router (re:.*mlp.gate$)HuggingFaceH4/ultrachat_200k
(train_sft), max sequence length 2048get_cutlass_moe_mm_data in vLLM) is currently
compiled only for CUDA compute capability 9.0 (Hopper) and 10.0
(datacenter Blackwell, B200/GB200).No compiled get_cutlass_moe_mm_data: ... capability 120. Required capability: 90 or 100.lm_head left
in full precision). To serve this model, use a GPU/kernel combination that
provides an NVFP4 fused-MoE kernel (Hopper or B200), or a vLLM build with NVFP4
MoE kernels compiled for your architecture.1from vllm import LLM, SamplingParams
2
3llm = LLM(model="JongYeop/Qwen3-30B-A3B-NVFP4-W4A4")
4out = llm.generate(
5 ["Explain mixture-of-experts in one sentence."],
6 SamplingParams(temperature=0.7, max_tokens=128),
7)
8print(out[0].outputs[0].text)1quant_stage:
2 quant_modifiers:
3 QuantizationModifier:
4 ignore: ["lm_head", "re:.*mlp.gate$"]
5 scheme: "NVFP4"
6 targets: ["Linear"]