EXDai commited on
Commit
a39bc12
·
verified ·
1 Parent(s): 977a431

Upload qwen3.6-35b-a3b-mtp0.env with huggingface_hub

Browse files
Files changed (1) hide show
  1. qwen3.6-35b-a3b-mtp0.env +27 -0
qwen3.6-35b-a3b-mtp0.env ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Qwen3.6 35B-A3B - MTP 0 baseline (speculation disabled)
2
+ # Same as the optimized default but without speculative decoding.
3
+ # Used for benchmarking: isolating the speed impact of MTP.
4
+ MODEL=Qwen/Qwen3.6-35B-A3B
5
+ SERVED_NAME=Qwen/Qwen3.6-35B-A3B
6
+ IMAGE=vllm/vllm-openai:v0.20.0
7
+ GPU_MEM_UTIL=0.85
8
+ # vllm/vllm-openai entrypoint already runs `vllm serve`.
9
+ CMD_PREFIX=()
10
+
11
+ EXTRA_DOCKER_ARGS=()
12
+
13
+ EXTRA_VLLM_ARGS=(
14
+ --dtype bfloat16
15
+ --tensor-parallel-size 1
16
+ --pipeline-parallel-size 1
17
+ --data-parallel-size 1
18
+ --max-model-len 131072
19
+ --max-num-seqs 16
20
+ --max-num-batched-tokens 8192
21
+ --language-model-only
22
+ --enable-prefix-caching
23
+ --reasoning-parser qwen3
24
+ --enable-auto-tool-choice
25
+ --tool-call-parser qwen3_coder
26
+ )
27
+