Views
No views yet
Qwen/Qwen3.8-27B.compressed-tensors for vLLM Marlin. Runs on Ampere and newer (3090, 4090, A6000, A100). You do not need a 5090.| Quant | 4-bit / INT4 weights, 16-bit activations (W4A16) |
| Method | AutoRound 0.14.2, group size 128 |
| Format | compressed-tensors / Marlin |
| Not | AWQ · GGUF · NVFP4 |
| Size | 19.5 GB |
| Context | 262,144 native, up to 1M with YaRN |
| Proven | 2× RTX 3090, full 262k context |
--max-model-len is how much of that you reserve in GPU memory. Set it to 262144 if you have the VRAM (we do, on two 3090s). Set it lower if you run out of memory, or if you want more than one request in flight — leftover VRAM goes to the KV cache.1pip install "transformers>=5.15"
2
3vllm serve MIRALABS/Qwen3.8-27B-W4A16-AutoRound \
4 --tensor-parallel-size 2 \
5 --max-model-len 262144 \
6 --kv-cache-dtype fp8 \
7 --enable-prefix-caching \
8 --enable-chunked-prefill \
9 --reasoning-parser qwen3 \
10 --enable-auto-tool-choice \
11 --tool-call-parser qwen3_coder \
12 --trust-remote-codetransformers>=5.15 for Qwen3_5Config. vLLM 0.19 still asks for <5; install 5.15 anyway.--max-model-len until it OOMs.1vllm serve MIRALABS/Qwen3.8-27B-W4A16-AutoRound \
2 --tensor-parallel-size 1 \
3 --max-model-len 8192 \
4 --gpu-memory-utilization 0.95 \
5 --kv-cache-dtype fp8 \
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice \
8 --tool-call-parser qwen3_coder \
9 --trust-remote-code1VLLM_ALLOW_LONG_MAX_MODEL_LEN=1 vllm serve MIRALABS/Qwen3.8-27B-W4A16-AutoRound \
2 --max-model-len 1000000 \
3 --hf-overrides '{"text_config":{"rope_parameters":{"mrope_interleaved":true,"mrope_section":[11,11,10],"rope_type":"yarn","rope_theta":10000000,"partial_rotary_factor":0.25,"factor":4.0,"original_max_position_embeddings":262144}}}' \
4 --trust-remote-codereasoning_effort=xhigh). The model writes inside <think>…</think>, then the answer. --reasoning-parser qwen3 puts the think in reasoning and the answer in content.max_tokens cuts it off mid-thought and you get an empty answer.xhigh — defaultmedium / low — shorter thinkenable_thinking=false — skip thinkingtemperature=1.0, top_p=0.95, top_k=20. No-think: temperature=0.7, top_p=0.8, presence_penalty=1.5.| Base | Qwen/Qwen3.8-27B |
| Bits | 4-bit weights (INT4), activations BF16 |
| Algorithm | Intel AutoRound 0.14.2 |
| Group | 128 |
| Packing | compressed-tensors, pack-quantized |
| Kernel | Marlin (Ampere+) |
| Calibration | NeelNanda/pile-10k, 128 samples, seq 2048, 200 iters |
| Left in BF16 | recurrence (in_proj_a / in_proj_b), vision, MTP, lm_head |