EXDai commited on
Commit
353dc90
·
verified ·
1 Parent(s): ed3a018

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

Browse files
Files changed (1) hide show
  1. qwen3.6-35b-a3b-mtp3.env +26 -0
qwen3.6-35b-a3b-mtp3.env ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Qwen3.6 35B-A3B - MTP depth 3 tuning profile
2
+ # Goal: test whether one extra speculative token improves steady-state decode throughput.
3
+ MODEL=Qwen/Qwen3.6-35B-A3B
4
+ SERVED_NAME=Qwen/Qwen3.6-35B-A3B
5
+ IMAGE=vllm/vllm-openai:v0.20.0
6
+ GPU_MEM_UTIL=0.85
7
+ # vllm/vllm-openai entrypoint already runs `vllm serve`.
8
+ CMD_PREFIX=()
9
+
10
+ EXTRA_DOCKER_ARGS=()
11
+
12
+ EXTRA_VLLM_ARGS=(
13
+ --dtype bfloat16
14
+ --tensor-parallel-size 1
15
+ --pipeline-parallel-size 1
16
+ --data-parallel-size 1
17
+ --max-model-len 131072
18
+ --max-num-seqs 16
19
+ --max-num-batched-tokens 8192
20
+ --language-model-only
21
+ --enable-prefix-caching
22
+ --reasoning-parser qwen3
23
+ --enable-auto-tool-choice
24
+ --tool-call-parser qwen3_coder
25
+ --speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":3}'
26
+ )