Update SGLang serving commands

#9
Files changed (1) hide show
  1. README.md +9 -15
README.md CHANGED
@@ -345,9 +345,9 @@ vllm serve $MODEL_CKPT \
345
 
346
  ### **SGLang**
347
 
348
- **Container (tested on 4× B200):** `docker pull lmsysorg/sglang:v0.5.12.post1`
349
 
350
- For more detailed information, please see this cookbook.
351
 
352
  **4× B200 single-node deployment (NVFP4):**
353
 
@@ -362,9 +362,7 @@ docker run -d --name nemotron-ultra-sglang \
362
  --ulimit stack=67108864 \
363
  -v $MODEL_CKPT:/model:ro \
364
  -e SAFETENSORS_FAST_GPU=1 \
365
- -e NVIDIA_TF32_OVERRIDE=1 \
366
- -e SGLANG_DISABLE_DEEP_GEMM=1 \
367
- lmsysorg/sglang:v0.5.12.post1 \
368
  python3 -m sglang.launch_server \
369
  --model-path /model \
370
  --host 0.0.0.0 \
@@ -374,20 +372,16 @@ docker run -d --name nemotron-ultra-sglang \
374
  --ep-size 4 \
375
  --context-length 262144 \
376
  --mem-fraction-static 0.85 \
377
- --chunked-prefill-size 32768 \
378
- --fp8-gemm-backend triton \
379
- --moe-runner-backend triton \
380
- --mamba-scheduler-strategy no_buffer \
381
- --disable-piecewise-cuda-graph \
382
  --reasoning-parser nemotron_3 \
383
  --tool-call-parser qwen3_coder \
384
  --speculative-algorithm EAGLE \
385
- --speculative-num-steps 5 \
386
  --speculative-eagle-topk 1 \
387
- --speculative-num-draft-tokens 5 \
388
- --kv-cache-dtype fp8 \
389
- --trust-remote-code \
390
- --log-level info
391
  ```
392
 
393
  * **Context length:** Defaults to 256k above. To use up to 1M, set `SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1` and `--context-length 1048576`.
 
345
 
346
  ### **SGLang**
347
 
348
+ **Container (tested on 4× B200):** `docker pull lmsysorg/sglang:v0.5.13`
349
 
350
+ For more detailed information, please see the official [SGLang cookbook](https://docs.sglang.io/cookbook/autoregressive/NVIDIA/Nemotron3-Ultra).
351
 
352
  **4× B200 single-node deployment (NVFP4):**
353
 
 
362
  --ulimit stack=67108864 \
363
  -v $MODEL_CKPT:/model:ro \
364
  -e SAFETENSORS_FAST_GPU=1 \
365
+ lmsysorg/sglang:v0.5.13 \
 
 
366
  python3 -m sglang.launch_server \
367
  --model-path /model \
368
  --host 0.0.0.0 \
 
372
  --ep-size 4 \
373
  --context-length 262144 \
374
  --mem-fraction-static 0.85 \
375
+ --mamba-scheduler-strategy extra_buffer \
376
+ --mamba-backend flashinfer \
377
+ --attention-backend trtllm_mha \
 
 
378
  --reasoning-parser nemotron_3 \
379
  --tool-call-parser qwen3_coder \
380
  --speculative-algorithm EAGLE \
381
+ --speculative-num-steps 3 \
382
  --speculative-eagle-topk 1 \
383
+ --speculative-num-draft-tokens 4 \
384
+ --trust-remote-code
 
 
385
  ```
386
 
387
  * **Context length:** Defaults to 256k above. To use up to 1M, set `SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1` and `--context-length 1048576`.