Views
No views yet
in_proj_ba, in_proj_qkvz) that are created at load time by vLLM/SGLang's stacked_params_mapping. Quantizing those layers to INT4 produces garbage output — they must stay in bf16.1docker run --gpus '"device=0"' -p 8001:8001 \
2 -v /path/to/model:/model \
3 lmsysorg/sglang:v0.5.12.post1-cu130 \
4 python -m sglang.launch_server \
5 --model-path /model \
6 --port 8001 \
7 --context-length 131072 \
8 --chunked-prefill-size 8192 \
9 --mem-fraction-static 0.83 \
10 --kv-cache-dtype fp8_e5m2 \
11 --max-running-requests 16 \
12 --tool-call-parser qwen3_coder \
13 --reasoning-parser qwen31docker run --gpus '"device=0"' -p 8001:8001 \
2 -v /path/to/model:/model \
3 vllm/vllm-openai:v0.20.0 \
4 --model /model \
5 --quantization compressed-tensors \
6 --max-model-len 32768 \
7 --max-num-batched-tokens 16384 \
8 --gpu-memory-utilization 0.95 \
9 --kv-cache-dtype fp8 \
10 --enable-chunked-prefill \
11 --enable-prefix-caching \
12 --language-model-only \
13 --tool-call-parser qwen3_xml \
14 --reasoning-parser qwen3Note: pass--language-model-onlyto vLLM — the model reports a vision architecture (Qwen3_5ForConditionalGeneration) but this release contains only language model weights.
| Setup | GPU | VRAM | Context | KV pool |
|---|---|---|---|---|
| SGLang TP=1 | RTX 3090 24 GB | ~21 GB | 128K | 331K tokens |
| vLLM TP=1 | RTX 4070 Ti Super 16 GB | ~14 GB | 32K | — |