Views
No views yet
Qwen3_5ForConditionalGeneration (VLM backbone)1vllm serve raydelossantos/OmniCoder-9B-GPTQ-Int4 \
2 --dtype float16 \
3 --trust-remote-code \
4 --enable-prefix-caching \
5 --tool-call-parser qwen3_coder \
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice| Flag | Why |
|---|---|
--enable-prefix-caching | Recommended — enables KV cache reuse for repeated system prompts |
--dtype float16 | Better throughput on Ampere GPUs (BF16 weights cast to FP16) |
--trust-remote-code | Required for Qwen3.5 model type |
Note:--enforce-eageris not required on vLLM >= 0.18.0. The DeltaNet dtype mismatch was fixed in PR #35256. CUDA graphs with piecewise mode work correctly and provide ~3-4x speedup over eager mode.
1# 4x RTX 3060 (48GB total) — fits with 80K context, ~39 t/s warm
2vllm serve raydelossantos/OmniCoder-9B-GPTQ-Int4 \
3 --tensor-parallel-size 4 \
4 --max-model-len 81920 \
5 --gpu-memory-utilization 0.93 \
6 --dtype float16 \
7 --trust-remote-code \
8 --enable-prefix-caching \
9 --tool-call-parser qwen3_coder \
10 --reasoning-parser qwen3 \
11 --enable-auto-tool-choice| Test | Tokens/sec |
|---|---|
| Short (64 tok) | 36 t/s |
| Code gen (256 tok) | 39 t/s |
| Long output (512 tok) | 40 t/s |
| Reasoning (256 tok) | 39 t/s |
Qwen3_5ForConditionalGeneration layout:model.language_model.* — quantized text model (GPTQ INT4)model.visual.* — vision encoder (BF16, from base model)lm_head.* — language model head (BF16)