Hi everyone,
I ran a comparison of different quantized versions of Qwen3.6-35B-A3B-NVFP4 on vLLM 0.25.0:
Starting the vllm server with flashinfer_b12x backend
For the Unsloth model:
vllm serve unsloth/Qwen3.6-35B-A3B-NVFP4-Fast --moe-backend flashinfer_b12x
Benchmark command:
vllm bench serve \
--model unsloth/Qwen3.6-35B-A3B-NVFP4-Fast \
--dataset-name random \
--random-input-len 1000 \
--random-output-len 1000 \
--request-rate 100 \
--num-prompts 100 \
--ignore-eos
Results: unsloth/Qwen3.6-35B-A3B-NVFP4-Fast
Single RTX 6000 Pro
============ Serving Benchmark Result ============
Successful requests: 100
Failed requests: 0
Request rate configured (RPS): 100.00
Benchmark duration (s): 31.07
Total input tokens: 100000
Total generated tokens: 100000
Request throughput (req/s): 3.22
Output token throughput (tok/s): 3218.35
Peak output token throughput (tok/s): 3800.00
Peak concurrent requests: 100.00
Total token throughput (tok/s): 6436.70
---------------Time to First Token----------------
Mean TTFT (ms): 1141.97
Median TTFT (ms): 1107.41
P99 TTFT (ms): 1814.77
-----Time per Output Token (excl. 1st token)------
Mean TPOT (ms): 29.31
Median TPOT (ms): 29.33
P99 TPOT (ms): 30.29
---------------Inter-token Latency----------------
Mean ITL (ms): 29.31
Median ITL (ms): 28.69
P99 ITL (ms): 32.08
==================================================
DGX Spark
============ Serving Benchmark Result ============
Successful requests: 100
Failed requests: 0
Request rate configured (RPS): 100.00
Benchmark duration (s): 229.44
Total input tokens: 100000
Total generated tokens: 100000
Request throughput (req/s): 0.44
Output token throughput (tok/s): 435.84
Peak output token throughput (tok/s): 600.00
Peak concurrent requests: 100.00
Total token throughput (tok/s): 871.69
---------------Time to First Token----------------
Mean TTFT (ms): 13573.71
Median TTFT (ms): 13400.97
P99 TTFT (ms): 24417.79
-----Time per Output Token (excl. 1st token)------
Mean TPOT (ms): 212.83
Median TPOT (ms): 213.31
P99 TPOT (ms): 219.48
---------------Inter-token Latency----------------
Mean ITL (ms): 212.83
Median ITL (ms): 210.97
P99 ITL (ms): 470.14
==================================================
Results: nvidia/Qwen3.6-35B-A3B-NVFP4
Then test nvidia/Qwen3.6-35B-A3B-NVFP4 · Hugging Face with default Marlin backend:
vllm serve nvidia/Qwen3.6-35B-A3B-NVFP4 \
--port 8000 \
--quantization modelopt \
--max-model-len 262144 \
--reasoning-parser qwen3
Single 6000 Pro:
============ Serving Benchmark Result ============
Successful requests: 100
Failed requests: 0
Request rate configured (RPS): 100.00
Benchmark duration (s): 45.73
Total input tokens: 100000
Total generated tokens: 100000
Request throughput (req/s): 2.19
Output token throughput (tok/s): 2186.98
Peak output token throughput (tok/s): 4100.00
Peak concurrent requests: 100.00
Total token throughput (tok/s): 4373.96
---------------Time to First Token----------------
Mean TTFT (ms): 18277.23
Median TTFT (ms): 18218.49
P99 TTFT (ms): 19379.14
-----Time per Output Token (excl. 1st token)------
Mean TPOT (ms): 26.83
Median TPOT (ms): 26.88
P99 TPOT (ms): 28.10
---------------Inter-token Latency----------------
Mean ITL (ms): 26.83
Median ITL (ms): 25.66
P99 ITL (ms): 30.04
==================================================
DGX Spark
============ Serving Benchmark Result ============
Successful requests: 100
Failed requests: 0
Request rate configured (RPS): 100.00
Benchmark duration (s): 247.38
Total input tokens: 100000
Total generated tokens: 100000
Request throughput (req/s): 0.40
Output token throughput (tok/s): 404.24
Peak output token throughput (tok/s): 600.00
Peak concurrent requests: 100.00
Total token throughput (tok/s): 808.48
---------------Time to First Token----------------
Mean TTFT (ms): 38299.51
Median TTFT (ms): 37504.90
P99 TTFT (ms): 54582.94
-----Time per Output Token (excl. 1st token)------
Mean TPOT (ms): 206.14
Median TPOT (ms): 207.26
P99 TPOT (ms): 216.33
---------------Inter-token Latency----------------
Mean ITL (ms): 206.14
Median ITL (ms): 196.58
P99 ITL (ms): 717.73
==================================================
On both platforms, Unsloth’s NVFP4-Fast variant significantly outperformed the NVIDIA release in TTFT and overall throughput.