disagg_dp_attn.sh 1.5 KB
Newer Older
1
2
3
4
5
6
7
#!/bin/bash
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

# Setup cleanup trap
cleanup() {
    echo "Cleaning up background processes..."
8
9
    kill $DYNAMO_PID $PREFILL_PID 2>/dev/null || true
    wait $DYNAMO_PID $PREFILL_PID 2>/dev/null || true
10
11
12
13
14
    echo "Cleanup complete."
}
trap cleanup EXIT INT TERM

# run clear_namespace
15
python3 -m dynamo.sglang.utils.clear_namespace --namespace dynamo
16
17

# run ingress
18
python3 -m dynamo.frontend --http-port=8000 &
19
20
DYNAMO_PID=$!

21
22
23
24
# Set the expert distribution recording directory
mkdir -p /tmp/sglang_expert_distribution_record
export SGLANG_EXPERT_DISTRIBUTION_RECORDER_DIR=/tmp/sglang_expert_distribution_record

25
# run prefill worker
26
python3 -m dynamo.sglang \
27
28
29
30
31
32
33
34
  --model-path silence09/DeepSeek-R1-Small-2layers \
  --served-model-name silence09/DeepSeek-R1-Small-2layers \
  --tp 2 \
  --dp-size 2 \
  --enable-dp-attention \
  --trust-remote-code \
  --disaggregation-mode prefill \
  --disaggregation-transfer-backend nixl \
35
  --expert-distribution-recorder-mode stat \
36
37
38
39
  --port 30000 &
PREFILL_PID=$!

# run decode worker
40
CUDA_VISIBLE_DEVICES=2,3 python3 -m dynamo.sglang \
41
42
43
44
45
46
47
48
  --model-path silence09/DeepSeek-R1-Small-2layers \
  --served-model-name silence09/DeepSeek-R1-Small-2layers \
  --tp 2 \
  --dp-size 2 \
  --enable-dp-attention \
  --trust-remote-code \
  --disaggregation-mode decode \
  --disaggregation-transfer-backend nixl \
49
  --expert-distribution-recorder-mode stat \
50
  --port 31000