Views
No views yet
compressed-tensors), FP16 activations. Runs on 1Cat-vLLM's SM70 TurboMind path (Tesla V100) and on stock vLLM (Ampere+).Qwen/Qwen3.6-27B| gsm8k | Factual | Confab ↓ | Openness | tok/s (c1) |
|---|---|---|---|---|
| 0.87 | 1.0 | 0.27 | 0.25 | 46.8 |
1# 1Cat-vLLM on 2x Tesla V100 (SM70): W4A16-AWQ + MTP. (Also runs on stock vLLM, Ampere+.)
2export VLLM_SM70_FLASH_ATTN_V100=1 VLLM_SM70_QUANT_BACKEND=turbomind
3python -m vllm.entrypoints.openai.api_server \
4 --model philbert440/Qwen3.6-27B-Uncensored-Medium-W4A16-AWQ --trust-remote-code --dtype half \
5 --attention-backend FLASH_ATTN_V100 --tensor-parallel-size 2 \
6 --kv-cache-dtype fp8_e5m2 --max-num-seqs 6 \
7 --speculative-config '{"method":"mtp","num_speculative_tokens":4,"attention_backend":"FLASH_ATTN_V100","draft_sample_method":"greedy"}' \
8 --compilation-config '{"cudagraph_mode":"full_and_piecewise","cudagraph_capture_sizes":[1,2,4,8]}'tokenizer.json / tokenizer_config.json were re-serialized by the llm-compressor calibration run and shipped with an active truncation block (max_length 1024/2048) plus a drifted pre-tokenizer regex (and, on the Qwen3.6-based repos, 7 phantom audio/TTS special tokens the base model does not define). That broke image inputs larger than the limit under transformers 5 / vLLM (Mismatch in image token count, surfacing as an HTTP 400 Failed to apply Qwen3VLProcessor). Both files are now byte-identical to the upstream base model's (vocab/merges/added tokens were always identical — this is a metadata-only restore). If you downloaded before this date, re-fetch those two files. Thanks to @elBuffo for the report.