disagg_router.sh 1.39 KB
Newer Older
Alec's avatar
Alec committed
1
2
3
4
5
6
#!/bin/bash
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -e
trap 'echo Cleaning up...; kill 0' EXIT

Yan Ru Pei's avatar
Yan Ru Pei committed
7
8
9
10
11
12
13
14
15
16
17
18
19
# Set deterministic hash for KV event IDs
export PYTHONHASHSEED=0

# Common configuration
MODEL="Qwen/Qwen3-0.6B"
BLOCK_SIZE=64

# run decode router with kv-overlap-score-weight 0 for pure load balancing
python -m dynamo.frontend \
    --router-mode kv \
    --http-port 8000 \
    --kv-overlap-score-weight 0 \
    --router-reset-states &
Alec's avatar
Alec committed
20

21
22
23
24
25
26
# run standalone router service for prefill workers
python -m dynamo.router \
    --endpoint dynamo.prefill.generate \
    --block-size $BLOCK_SIZE \
    --router-reset-states \
    --no-track-active-blocks &
Yan Ru Pei's avatar
Yan Ru Pei committed
27
28

# two decode workers
29
# --enforce-eager is added for quick deployment. for production use, need to remove this flag
Yan Ru Pei's avatar
Yan Ru Pei committed
30
31
32
33
CUDA_VISIBLE_DEVICES=0 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
    --enforce-eager &
Alec's avatar
Alec committed
34

Yan Ru Pei's avatar
Yan Ru Pei committed
35
36
37
38
CUDA_VISIBLE_DEVICES=1 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
    --enforce-eager &
Alec's avatar
Alec committed
39

Yan Ru Pei's avatar
Yan Ru Pei committed
40
# two prefill workers
Alec's avatar
Alec committed
41
CUDA_VISIBLE_DEVICES=2 python3 -m dynamo.vllm \
Yan Ru Pei's avatar
Yan Ru Pei committed
42
43
44
45
46
47
48
49
    --model $MODEL \
    --block-size $BLOCK_SIZE \
    --enforce-eager \
    --is-prefill-worker &

CUDA_VISIBLE_DEVICES=3 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
Alec's avatar
Alec committed
50
51
    --enforce-eager \
    --is-prefill-worker