Works Great!

#2
by hampsonw - opened

I have 4x3090's power capped at 230w and a Samsung 970 Pro (i only have 64gb of RAM so the PLE Table streams from the SSD. Using vLLM i have been able to replicate model provider stated results on DeepSWE. I get 69t/s single concurrency, 108 t/s c=2 and 189 t/s c=4 with ~1650 t/s prefill. Depth 31768 generation of 512 prefill 8096. To get these speeds i have had to fork vLLM and write a lot of custom inference engine code. I have 425,497 tok avail kv-cache. I generally love cyankiwi quants for their accuracy but this is just as accurate but about 8Gib smaller.

I have 425,497 tok avail kv-cache. -> how you get this with 4x3090 ? can you please share the working VLLM config file ?

Works great for me too. Much better output quality then for example VnimanieAI/Qwen3.8-Flash-Next-W4A16 .
I get 7100t/s PP and 69t/s TG with 560k KV size on 4x3090, which is great. To get the prefill speed gains, it needed some custom patching of VLLM to allow TP2+PP2 and I also needed P2P mod.

vllm bench serve   --backend openai-chat   --endpoint /v1/chat/completions   --model Qwen/Qwen3.8-Flash-Next   --dataset-name random   --random-input-len 100000   --random-output-len 1   --num-prompts 1   --request-rate 1 --port 8001 --seed 3 --max-concurrency 1

Successful requests:                     1
Failed requests:                         0
Maximum request concurrency:             1
Request rate configured (RPS):           1.00
Benchmark duration (s):                  14.14
Total input tokens:                      100052
Total generated tokens:                  1
Request throughput (req/s):              0.07
Output token throughput (tok/s):         0.07
Peak output token throughput (tok/s):    2.00
Peak concurrent requests:                1.00
Total token throughput (tok/s):          7074.00
---------------Time to First Token----------------
Mean TTFT (ms):                          13142.04
Median TTFT (ms):                        13142.04
P99 TTFT (ms):                           13142.04
-----Time per Output Token (excl. 1st token)------
Mean TPOT (ms):                          0.00
Median TPOT (ms):                        0.00
P99 TPOT (ms):                           0.00
---------------Inter-token Latency----------------
Mean ITL (ms):                           0.03
Median ITL (ms):                         0.03
P99 ITL (ms):                            0.03
==================================================

Sign up or log in to comment