|
| 1 | +<!-- |
| 2 | +SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 3 | +SPDX-License-Identifier: Apache-2.0 |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +you may not use this file except in compliance with the License. |
| 7 | +You may obtain a copy of the License at |
| 8 | +
|
| 9 | +http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +See the License for the specific language governing permissions and |
| 15 | +limitations under the License. |
| 16 | +--> |
| 17 | + |
| 18 | +# Dynamo Examples |
| 19 | + |
| 20 | +This directory contains practical examples demonstrating how to deploy and use Dynamo for distributed LLM inference. Each example includes setup instructions, configuration files, and explanations to help you understand different deployment patterns and use cases. |
| 21 | + |
| 22 | +> **Want to see a specific example?** |
| 23 | +> Open a [GitHub issue](https://github.com/ai-dynamo/dynamo/issues) to request an example you'd like to see, or [open a pull request](https://github.com/ai-dynamo/dynamo/pulls) if you'd like to contribute your own! |
| 24 | +
|
| 25 | +## Basics & Tutorials |
| 26 | + |
| 27 | +Learn fundamental Dynamo concepts through these introductory examples: |
| 28 | + |
| 29 | +- **[Quickstart](basics/quickstart/README.md)** - Simple aggregated serving example with vLLM backend |
| 30 | +- **[Disaggregated Serving](basics/disaggregated_serving/README.md)** - Prefill/decode separation for enhanced performance and scalability |
| 31 | +- **[Multi-node](basics/multinode/README.md)** - Distributed inference across multiple nodes and GPUs |
| 32 | +- **[Multimodal](basics/multimodal/README.md)** - Multimodal model deployment with E/P/D disaggregated serving |
| 33 | + |
| 34 | +## Deployment Examples |
| 35 | + |
| 36 | +Platform-specific deployment guides for production environments: |
| 37 | + |
| 38 | +- **[Amazon EKS](deployments/EKS/)** - Deploy Dynamo on Amazon Elastic Kubernetes Service |
| 39 | +- **[Azure AKS](deployments/AKS/)** - Deploy Dynamo on Azure Kubernetes Service |
| 40 | +- **[Router Standalone](deployments/router_standalone/)** - Standalone router deployment patterns |
| 41 | +- **Amazon ECS** - _Coming soon_ |
| 42 | +- **Google GKE** - _Coming soon_ |
| 43 | +- **Ray** - _Coming soon_ |
| 44 | +- **NVIDIA Cloud Functions (NVCF)** - _Coming soon_ |
| 45 | + |
| 46 | +## Runtime Examples |
| 47 | + |
| 48 | +Low-level runtime examples for developers using Python<>Rust bindings: |
| 49 | + |
| 50 | +- **[Hello World](runtime/hello_world/README.md)** - Minimal Dynamo runtime service demonstrating basic concepts |
| 51 | + |
| 52 | +## Getting Started |
| 53 | + |
| 54 | +1. **Choose your deployment pattern**: Start with the [Quickstart](basics/quickstart/README.md) for a simple local deployment, or explore [Disaggregated Serving](basics/disaggregated_serving/README.md) for advanced architectures. |
| 55 | + |
| 56 | +2. **Set up prerequisites**: Most examples require etcd and NATS services. You can start them using: |
| 57 | + ```bash |
| 58 | + docker compose -f deploy/metrics/docker-compose.yml up -d |
| 59 | + ``` |
| 60 | + |
| 61 | +3. **Follow the example**: Each directory contains detailed setup instructions and configuration files specific to that deployment pattern. |
| 62 | + |
| 63 | +## Prerequisites |
| 64 | + |
| 65 | +Before running any examples, ensure you have: |
| 66 | + |
| 67 | +- **Docker & Docker Compose** - For containerized services |
| 68 | +- **CUDA-compatible GPU** - For LLM inference (except hello_world, which is non-GPU aware) |
| 69 | +- **Python 3.9++** - For client scripts and utilities |
| 70 | +- **Kubernetes cluster** - For any cloud deployment/K8s examples |
| 71 | + |
| 72 | +## Framework Support |
| 73 | + |
| 74 | +These examples show how Dynamo broadly works using major inference engines. |
| 75 | + |
| 76 | +If you want to see advanced, framework-specific deployment patterns and best practices, check out the [Components Workflows](../components/backends/) directory: |
| 77 | +- **[vLLM](../components/backends/vllm/)** – vLLM-specific deployment and configuration |
| 78 | +- **[SGLang](../components/backends/sglang/)** – SGLang integration examples and workflows |
| 79 | +- **[TensorRT-LLM](../components/backends/trtllm/)** – TensorRT-LLM workflows and optimizations |
0 commit comments