#!/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 # run ingress python -m dynamo.frontend --http-port=8000 & # run decode worker on GPU 0, without enabling KVBM # NOTE: remove --enforce-eager for production use CUDA_VISIBLE_DEVICES=0 python3 -m dynamo.vllm --model Qwen/Qwen3-0.6B --connector nixl --enforce-eager & # run prefill worker on GPU 1 with KVBM enabled using 20GB of CPU cache # NOTE: remove --enforce-eager for production use DYN_KVBM_CPU_CACHE_GB=20 \ CUDA_VISIBLE_DEVICES=1 \ python3 -m dynamo.vllm \ --model Qwen/Qwen3-0.6B \ --is-prefill-worker \ --connector kvbm nixl \ --enforce-eager