#!/bin/bash # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Usage: ./disagg_same_gpu.sh # Automatically calculates GPU memory fraction so each worker gets 4GB # Get total and free GPU memory GPU_MEM_INFO=$(python3 -c "import torch; free, total = torch.cuda.mem_get_info(); print(f'{free/1024**3:.2f} {total/1024**3:.2f}')" 2>/dev/null) if [ $? -ne 0 ]; then echo "Error: Failed to check GPU memory. Is PyTorch with CUDA available?" exit 1 fi FREE_GPU_GB=$(echo $GPU_MEM_INFO | awk '{print $1}') TOTAL_GPU_GB=$(echo $GPU_MEM_INFO | awk '{print $2}') # Each worker needs 4GB REQUIRED_GB_PER_WORKER=4 REQUIRED_GB_TOTAL=8 # Calculate fraction needed per worker (4GB / total GPU memory) GPU_MEM_FRACTION=$(python3 -c "print(f'{$REQUIRED_GB_PER_WORKER / $TOTAL_GPU_GB:.3f}')") # Check if we have enough free memory if python3 -c "import sys; sys.exit(0 if float('$FREE_GPU_GB') >= $REQUIRED_GB_TOTAL else 1)"; then echo "GPU memory check passed: ${FREE_GPU_GB}GB free / ${TOTAL_GPU_GB}GB total (required: ${REQUIRED_GB_TOTAL}GB)" echo "Using ${GPU_MEM_FRACTION} memory fraction per worker (${REQUIRED_GB_PER_WORKER}GB each)" else echo "Error: Insufficient GPU memory. Required: ${REQUIRED_GB_TOTAL}GB, Available: ${FREE_GPU_GB}GB" echo "Please free up GPU memory before running disaggregated mode on single GPU." exit 1 fi # Setup cleanup trap cleanup() { echo "Cleaning up background processes..." kill $DYNAMO_PID $DECODE_PID 2>/dev/null || true wait $DYNAMO_PID $DECODE_PID 2>/dev/null || true echo "Cleanup complete." } trap cleanup EXIT INT TERM # run ingress python3 -m dynamo.frontend --http-port=8000 & DYNAMO_PID=$! # run decode worker with metrics on port 8081 # --enforce-eager is added for quick deployment. for production use, need to remove this flag DYN_SYSTEM_PORT=8081 \ CUDA_VISIBLE_DEVICES=0 \ python3 -m dynamo.vllm \ --model Qwen/Qwen3-0.6B \ --enforce-eager \ --gpu-memory-utilization ${GPU_MEM_FRACTION} & DECODE_PID=$! # 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 # run prefill worker with metrics on port 8082 (foreground) DYN_SYSTEM_PORT=8082 \ DYN_VLLM_KV_EVENT_PORT=20081 \ VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \ CUDA_VISIBLE_DEVICES=0 \ python3 -m dynamo.vllm \ --model Qwen/Qwen3-0.6B \ --enforce-eager \ --is-prefill-worker \ --gpu-memory-utilization ${GPU_MEM_FRACTION}