Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/disagg/run_disagg_single_host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ mkdir -p $HOME/logs

# Start prefill instances
for i in $(seq 0 $((NUM_PREFILL_INSTANCES-1))); do
PORT=$((8100 + i))
PORT=$((8400 + i))
KV_PORT=$((7100 + i))
SIDE_PORT=$((6100 + i))

Expand All @@ -61,7 +61,7 @@ done

# Start decode instances
for i in $(seq 0 $((NUM_DECODE_INSTANCES-1))); do
PORT=$((8200 + i))
PORT=$((9400 + i))
KV_PORT=$((7200 + i))
# Same as prefill SIDE_PORT
SIDE_PORT=$((6100 + i))
Expand Down
4 changes: 2 additions & 2 deletions examples/disagg/toy_proxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def parse_args():
"--prefiller-port",
type=int,
nargs="+",
default=[8100])
default=[8400])

# For decoder instances
parser.add_argument("--decoder-hosts",
Expand All @@ -104,7 +104,7 @@ def parse_args():
"--decoder-port",
type=int,
nargs="+",
default=[8200])
default=[9400])

args = parser.parse_args()

Expand Down