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

Upload nemotron-3-super.env with huggingface_hub

Browse files
Files changed (1) hide show
  1. nemotron-3-super.env +38 -0
nemotron-3-super.env ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # NVIDIA Nemotron-3-Super-120B-A12B-NVFP4 — DGX Spark recipe
2
+ # Source: huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4
3
+ # 256k context, MTP speculative decoding ON (3 draft tokens).
4
+ MODEL=nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4
5
+ SERVED_NAME=nvidia/nemotron-3-super
6
+ IMAGE=vllm/vllm-openai:v0.20.0
7
+ GPU_MEM_UTIL=0.80
8
+ # vllm/vllm-openai entrypoint already runs `vllm serve`.
9
+ CMD_PREFIX=()
10
+
11
+ EXTRA_DOCKER_ARGS=(
12
+ -e VLLM_NVFP4_GEMM_BACKEND=marlin
13
+ -e VLLM_ALLOW_LONG_MAX_MODEL_LEN=1
14
+ -e VLLM_FLASHINFER_ALLREDUCE_BACKEND=trtllm
15
+ -e VLLM_USE_FLASHINFER_MOE_FP4=0
16
+ -v "$HOME/projects/serve/parsers/super_v3_reasoning_parser.py:/app/super_v3_reasoning_parser.py:ro"
17
+ )
18
+
19
+ EXTRA_VLLM_ARGS=(
20
+ --quantization fp4
21
+ --moe-backend marlin
22
+ --kv-cache-dtype fp8
23
+ --mamba_ssm_cache_dtype float16
24
+ --dtype auto
25
+ --tensor-parallel-size 1
26
+ --pipeline-parallel-size 1
27
+ --data-parallel-size 1
28
+ --max-model-len 262144
29
+ --max-num-seqs 4
30
+ --enable-chunked-prefill
31
+ --async-scheduling
32
+ --trust-remote-code
33
+ --reasoning-parser-plugin /app/super_v3_reasoning_parser.py
34
+ --reasoning-parser super_v3
35
+ --enable-auto-tool-choice
36
+ --tool-call-parser qwen3_coder
37
+ --speculative_config '{"method":"mtp","num_speculative_tokens":3,"moe_backend":"triton"}'
38
+ )