README.md 11.7 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

Anish's avatar
Anish committed
18
# LLM Deployment using TensorRT-LLM
19
20
21

This directory contains examples and reference implementations for deploying Large Language Models (LLMs) in various configurations using TensorRT-LLM.

22
23
24
25
26
27
28
29
30
31
32
## Use the Latest Release

We recommend using the latest stable release of dynamo to avoid breaking changes:

[![GitHub Release](https://img.shields.io/github/v/release/ai-dynamo/dynamo)](https://github.com/ai-dynamo/dynamo/releases/latest)

You can find the latest release [here](https://github.com/ai-dynamo/dynamo/releases/latest) and check out the corresponding branch with:

```bash
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
```
33

Anish's avatar
Anish committed
34
35
36
37
38
---

## Table of Contents
- [Feature Support Matrix](#feature-support-matrix)
- [Quick Start](#quick-start)
39
- [Single Node Examples](#single-node-examples)
Anish's avatar
Anish committed
40
41
42
43
44
- [Advanced Examples](#advanced-examples)
- [Disaggregation Strategy](#disaggregation-strategy)
- [KV Cache Transfer](#kv-cache-transfer-in-disaggregated-serving)
- [Client](#client)
- [Benchmarking](#benchmarking)
45
- [Multimodal Support](#multimodal-support)
46
- [Performance Sweep](#performance-sweep)
Anish's avatar
Anish committed
47
48
49
50

## Feature Support Matrix

### Core Dynamo Features
51

Anish's avatar
Anish committed
52
53
| Feature | TensorRT-LLM | Notes |
|---------|--------------|-------|
54
55
56
57
58
59
| [**Disaggregated Serving**](../../../docs/architecture/disagg_serving.md) | ✅ |  |
| [**Conditional Disaggregation**](../../../docs/architecture/disagg_serving.md#conditional-disaggregation) | 🚧 | Not supported yet |
| [**KV-Aware Routing**](../../../docs/architecture/kv_cache_routing.md) | ✅ |  |
| [**SLA-Based Planner**](../../../docs/architecture/sla_planner.md) | 🚧 | Planned |
| [**Load Based Planner**](../../../docs/architecture/load_planner.md) | 🚧 | Planned |
| [**KVBM**](../../../docs/architecture/kvbm_architecture.md) | 🚧 | Planned |
60

Anish's avatar
Anish committed
61
### Large Scale P/D and WideEP Features
62

Anish's avatar
Anish committed
63
64
65
66
67
| Feature            | TensorRT-LLM | Notes                                                                 |
|--------------------|--------------|-----------------------------------------------------------------------|
| **WideEP**         | ✅           |                                                                 |
| **DP Rank Routing**| ✅           |                                                                 |
| **GB200 Support**  | ✅           |                                                                 |
68

69
## TensorRT-LLM Quick Start
70

Anish's avatar
Anish committed
71
72
73
74
75
Below we provide a guide that lets you run all of our the common deployment patterns on a single node.

### Start NATS and ETCD in the background

Start using [Docker Compose](../../../deploy/docker-compose.yml)
76
77

```bash
78
docker compose -f deploy/docker-compose.yml up -d
79
80
```

Anish's avatar
Anish committed
81
### Build container
82
83

```bash
84
85
# TensorRT-LLM uses git-lfs, which needs to be installed in advance.
apt-get update && apt-get -y install git git-lfs
86

87
# On an x86 machine:
88
./container/build.sh --framework trtllm
89
90

# On an ARM machine:
91
./container/build.sh --framework trtllm --platform linux/arm64
92
93
94
95

# Build the container with the default experimental TensorRT-LLM commit
# WARNING: This is for experimental feature testing only.
# The container should not be used in a production environment.
96
./container/build.sh --framework trtllm --use-default-experimental-tensorrtllm-commit
97
98
99
100
```

### Run container

Anish's avatar
Anish committed
101
```bash
102
./container/run.sh --framework trtllm -it
103
104
```

Anish's avatar
Anish committed
105
## Single Node Examples
106

Anish's avatar
Anish committed
107
108
> [!IMPORTANT]
> Below we provide some simple shell scripts that run the components for each configuration. Each shell script is simply running the `python3 -m dynamo.frontend <args>` to start up the ingress and using `python3 -m dynamo.trtllm <args>` to start up the workers. You can easily take each command and run them in separate terminals.
109

Anish's avatar
Anish committed
110
This figure shows an overview of the major components to deploy:
111
112
113

```
+------+      +-----------+      +------------------+             +---------------+
114
115
| HTTP |----->| processor |----->|      Worker1     |------------>|    Worker2    |
|      |<-----|           |<-----|                  |<------------|               |
116
117
118
119
120
121
122
123
124
125
+------+      +-----------+      +------------------+             +---------------+
                  |    ^                  |
       query best |    | return           | publish kv events
           worker |    | worker_id        v
                  |    |         +------------------+
                  |    +---------|     kv-router    |
                  +------------->|                  |
                                 +------------------+
```

126
**Note:** The diagram above shows all possible components in a deployment. Depending on the chosen disaggregation strategy, you can configure whether Worker1 handles prefill and Worker2 handles decode, or vice versa. For more information on how to select and configure these strategies, see the [Disaggregation Strategy](#disaggregation-strategy) section below.
127

Anish's avatar
Anish committed
128
### Aggregated
129
```bash
130
cd $DYNAMO_HOME/components/backends/trtllm
131
./launch/agg.sh
132
```
133

Anish's avatar
Anish committed
134
### Aggregated with KV Routing
135
```bash
136
cd $DYNAMO_HOME/components/backends/trtllm
137
./launch/agg_router.sh
138
```
139

Anish's avatar
Anish committed
140
### Disaggregated
141

142
143
> [!IMPORTANT]
> Disaggregated serving supports two strategies for request flow: `"prefill_first"` and `"decode_first"`. By default, the script below uses the `"decode_first"` strategy, which can reduce response latency by minimizing extra hops in the return path. You can switch strategies by setting the `DISAGGREGATION_STRATEGY` environment variable.
144

145
```bash
146
cd $DYNAMO_HOME/components/backends/trtllm
147
./launch/disagg.sh
148
149
```

Anish's avatar
Anish committed
150
### Disaggregated with KV Routing
151

152
153
> [!IMPORTANT]
> Disaggregated serving with KV routing uses a "prefill first" workflow by default. Currently, Dynamo supports KV routing to only one endpoint per model. In disaggregated workflow, it is generally more effective to route requests to the prefill worker. If you wish to use a "decode first" workflow instead, you can simply set the `DISAGGREGATION_STRATEGY` environment variable accordingly.
154

155
```bash
156
cd $DYNAMO_HOME/components/backends/trtllm
157
./launch/disagg_router.sh
158
159
```

Anish's avatar
Anish committed
160
### Aggregated with Multi-Token Prediction (MTP) and DeepSeek R1
161
```bash
162
cd $DYNAMO_HOME/components/backends/trtllm
163

164
165
166
167
168
export AGG_ENGINE_ARGS=./engine_configs/deepseek_r1/mtp/mtp_agg.yaml
export SERVED_MODEL_NAME="nvidia/DeepSeek-R1-FP4"
# nvidia/DeepSeek-R1-FP4 is a large model
export MODEL_PATH="nvidia/DeepSeek-R1-FP4"
./launch/agg.sh
169
170
171
```

Notes:
172
173
174
- There is a noticeable latency for the first two inference requests. Please send warm-up requests before starting the benchmark.
- MTP performance may vary depending on the acceptance rate of predicted tokens, which is dependent on the dataset or queries used while benchmarking. Additionally, `ignore_eos` should generally be omitted or set to `false` when using MTP to avoid speculating garbage outputs and getting unrealistic acceptance rates.

Anish's avatar
Anish committed
175
## Advanced Examples
176

Anish's avatar
Anish committed
177
Below we provide a selected list of advanced examples. Please open up an issue if you'd like to see a specific example!
178

Anish's avatar
Anish committed
179
### Multinode Deployment
180

Anish's avatar
Anish committed
181
For comprehensive instructions on multinode serving, see the [multinode-examples.md](./multinode/multinode-examples.md) guide. It provides step-by-step deployment examples and configuration tips for running Dynamo with TensorRT-LLM across multiple nodes. While the walkthrough uses DeepSeek-R1 as the model, you can easily adapt the process for any supported model by updating the relevant configuration files. You can see [Llama4+eagle](./llama4_plus_eagle.md) guide to learn how to use these scripts when a single worker fits on the single node.
182

Anish's avatar
Anish committed
183
184
### Speculative Decoding
- **[Llama 4 Maverick Instruct + Eagle Speculative Decoding](./llama4_plus_eagle.md)**
185

186
187
### Kubernetes Deployment

188
For complete Kubernetes deployment instructions, configurations, and troubleshooting, see [TensorRT-LLM Kubernetes Deployment Guide](deploy/README.md).
189
190
191

### Client

192
See [client](../sglang/README.md#testing-the-deployment) section to learn how to send request to the deployment.
193

194
NOTE: To send a request to a multi-node deployment, target the node which is running `python3 -m dynamo.frontend <args>`.
195
196
197
198

### Benchmarking

To benchmark your deployment with GenAI-Perf, see this utility script, configuring the
199
`model` name and `host` based on your deployment: [perf.sh](../../../benchmarks/llm/perf.sh)
200
201


202
## Disaggregation Strategy
203

204
The disaggregation strategy controls how requests are distributed between the prefill and decode workers in a disaggregated deployment.
205

206
By default, Dynamo uses a `decode first` strategy: incoming requests are initially routed to the decode worker, which then forwards them to the prefill worker in round-robin fashion. The prefill worker processes the request and returns results to the decode worker for any remaining decode operations.
207

208
When using KV routing, however, Dynamo switches to a `prefill first` strategy. In this mode, requests are routed directly to the prefill worker, which can help maximize KV cache reuse and improve overall efficiency for certain workloads. Choosing the appropriate strategy can have a significant impact on performance, depending on your use case.
209

210
The disaggregation strategy can be set using the `DISAGGREGATION_STRATEGY` environment variable. You can set the strategy before launching your deployment, for example:
211
```bash
212
DISAGGREGATION_STRATEGY="prefill_first" ./launch/disagg.sh
213
214
```

215
## KV Cache Transfer in Disaggregated Serving
216

217
Dynamo with TensorRT-LLM supports two methods for transferring KV cache in disaggregated serving: UCX (default) and NIXL (experimental). For detailed information and configuration instructions for each method, see the [KV cache transfer guide](./kv-cache-transfer.md).
218

219

220
221
## Request Migration

222
You can enable [request migration](../../../docs/architecture/request_migration.md) to handle worker failures gracefully. Use the `--migration-limit` flag to specify how many times a request can be migrated to another worker:
223
224
225
226
227

```bash
python3 -m dynamo.trtllm ... --migration-limit=3
```

228
This allows a request to be migrated up to 3 times before failing. See the [Request Migration Architecture](../../../docs/architecture/request_migration.md) documentation for details on how this works.
229

Anish's avatar
Anish committed
230
231
## Client

232
See [client](../sglang/README.md#testing-the-deployment) section to learn how to send request to the deployment.
Anish's avatar
Anish committed
233
234

NOTE: To send a request to a multi-node deployment, target the node which is running `python3 -m dynamo.frontend <args>`.
235

Anish's avatar
Anish committed
236
237
238
239
## Benchmarking

To benchmark your deployment with GenAI-Perf, see this utility script, configuring the
`model` name and `host` based on your deployment: [perf.sh](../../../benchmarks/llm/perf.sh)
240
241
242

## Multimodal support

243
Dynamo with the TensorRT-LLM backend supports multimodal models, enabling you to process both text and images (or pre-computed embeddings) in a single request. For detailed setup instructions, example requests, and best practices, see the [Multimodal Support Guide](./multimodal_support.md).
244
245
246
247

## Performance Sweep

For detailed instructions on running comprehensive performance sweeps across both aggregated and disaggregated serving configurations, see the [TensorRT-LLM Benchmark Scripts for DeepSeek R1 model](./performance_sweeps/README.md). This guide covers recommended benchmarking setups, usage of provided scripts, and best practices for evaluating system performance.