disagg_same_gpu.sh 3.05 KB
Newer Older
1
#!/bin/bash
2
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
4
# SPDX-License-Identifier: Apache-2.0
#
5
# Disaggregated prefill/decode on a SINGLE GPU.
6
7
# Per-worker VRAM is controlled via build_gpu_mem_args (see gpu_utils.sh).
# Override individual knobs (MAX_MODEL_LEN, MAX_CONCURRENT_SEQS) via env vars.
8
9
10
11
12
13
14
#
# Measured reference (Qwen/Qwen3-0.6B, --max-model-len 4096, RTX 6000 Ada 48 GiB):
#   estimate (from gpu_utils.sh) : ~4.0 GiB per worker (~8.0 GiB total)
#   actual (nvidia-smi)          : ~3.4 GiB per worker (~6.7 GiB total)
#   fraction per worker (for 48 GiB) : 0.09
#   The ~1.3 GiB pad comes from the overhead term (CUDA ctx + activations).
#   Overestimating is intentional -- better to pad than OOM.
15

16
17
18
set -e
trap 'echo Cleaning up...; kill 0' EXIT

19
20
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
source "$SCRIPT_DIR/../../../common/gpu_utils.sh"
21

22
MODEL="Qwen/Qwen3-0.6B"
23

24
25
26
# ---- Tunable (override via env vars) ----
MAX_MODEL_LEN="${MAX_MODEL_LEN:-4096}"
MAX_CONCURRENT_SEQS="${MAX_CONCURRENT_SEQS:-2}"
27

28
GPU_MEM_ARGS=$(build_gpu_mem_args vllm --workers-per-gpu 2)
29

30
source "$SCRIPT_DIR/../../../common/launch_utils.sh"
31

32
HTTP_PORT="${DYN_HTTP_PORT:-8000}"
33
print_launch_banner "Launching Disaggregated on Same GPU (1 GPU)" "$MODEL" "$HTTP_PORT" \
34
    "Workers:     2 (prefill + decode, fraction is per worker)"
35

36
# run ingress
37
38
# dynamo.frontend accepts either --http-port flag or DYN_HTTP_PORT env var (defaults to 8000)
python3 -m dynamo.frontend &
39
40
41

# run decode worker with metrics on port 8081
# --enforce-eager is added for quick deployment. for production use, need to remove this flag
42
43
44
# For disaggregated deployments we standardize on DYN_SYSTEM_PORT1/2 instead of
# *_PREFILL/*_DECODE env names so test harnesses can set one simple pair.
DYN_SYSTEM_PORT=${DYN_SYSTEM_PORT1:-8081} \
45
46
CUDA_VISIBLE_DEVICES=0 \
python3 -m dynamo.vllm \
47
  --model "$MODEL" \
48
  --enforce-eager \
49
  --disaggregation-mode decode \
50
  --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
51
  $GPU_MEM_ARGS \
52
  --max-model-len "$MAX_MODEL_LEN" &
53
54
55
56
57
58
59
60
61
62

# Wait for decode worker to initialize before starting prefill worker
# This prevents both workers from competing for GPU memory simultaneously, which can cause OOM.
# The decode worker needs time to:
# 1. Load model weights and allocate its memory fraction
# 2. Initialize KV cache
# 3. Register with NATS service discovery so prefill worker can find it
echo "Waiting for decode worker to initialize..."
sleep 10

63
# run prefill worker with metrics on port 8082
64
DYN_SYSTEM_PORT=${DYN_SYSTEM_PORT2:-8082} \
65
66
67
VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \
CUDA_VISIBLE_DEVICES=0 \
python3 -m dynamo.vllm \
68
  --model "$MODEL" \
69
  --enforce-eager \
70
  --disaggregation-mode prefill \
71
  --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
72
  $GPU_MEM_ARGS \
73
  --max-model-len "$MAX_MODEL_LEN" \
74
75
76
77
  --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20081","enable_kv_cache_events":true}' &

# Exit on first worker failure; kill 0 in the EXIT trap tears down the rest
wait_any_exit