support_matrix.md 4.62 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
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.
-->

19
20
21
22
23
24
# Dynamo Support Matrix

This document provides the support matrix for Dynamo, including hardware, software and build instructions.

## Hardware Compatibility

25
26
27
28
| **CPU Architecture** | **Status**   |
| :------------------- | :----------- |
| **x86_64**           | Supported    |
| **ARM64**            | Experimental |
29

30
31
32
> [!Warning]
> While **x86_64** architecture is supported on systems with a minimum of 32 GB RAM and at least 4 CPU cores,
> the **ARM64** support is experimental and may have limitations.
33
34
35
36
37

### GPU Compatibility

If you are using a **GPU**, the following GPU models and architectures are supported:

38
39
40
41
42
43
44
| **GPU Architecture**                 | **Status** |
| :----------------------------------- | :--------- |
| **NVIDIA Blackwell Architecture**    | Supported  |
| **NVIDIA Hopper Architecture**       | Supported  |
| **NVIDIA Ada Lovelace Architecture** | Supported  |
| **NVIDIA Ampere Architecture**       | Supported  |

45
46
47
48
49

## Platform Architecture Compatibility

**Dynamo** is compatible with the following platforms:

50
| **Operating System** | **Version** | **Architecture** | **Status**   |
51
| :------------------- | :---------- | :--------------- | :----------- |
52
| **Ubuntu**           | 22.04       | x86_64           | Supported    |
53
54
| **Ubuntu**           | 24.04       | x86_64           | Supported    |
| **Ubuntu**           | 24.04       | ARM64            | Experimental |
55
| **CentOS Stream**    | 9           | x86_64           | Experimental |
56

57
58
59
60
61
62
63
64
> [!Note]
> For **Linux**, the **ARM64** support is experimental and may have limitations.
> Wheels are built using a manylinux_2_28-compatible environment and they have been validated on CentOS 9 and Ubuntu (22.04, 24.04).
>
> Compatibility with other Linux distributions is expected but has not been officially verified yet.

> [!Caution]
> KV Block Manager is supported only with Python 3.12. Python 3.12 support is currently limited to Ubuntu 24.04.
65

66
67

## Software Compatibility
68

69
### Runtime Dependency
70

71
72
| **Python Package** | **Version**   | glibc version                        | CUDA Version |
| :----------------- | :------------ | :----------------------------------- | :----------- |
73
74
75
| ai-dynamo          | 0.3.2         | >=2.28                               |              |
| ai-dynamo-runtime  | 0.3.2         | >=2.28 (Python 3.12 has known issues)|              |
| ai-dynamo-vllm     | 0.8.4.post4¹  | >=2.28 (recommended)                 |              |
76
| NIXL               | 0.4.0         | >=2.27                               | >=11.8       |
77
78

### Build Dependency
79

80
81
82
| **Build Dependency** | **Version**                                                                      |
| :------------------- | :------------------------------------------------------------------------------- |
| **Base Container**   | [25.03](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda-dl-base/tags) |
83
| **ai-dynamo-vllm**   | 0.8.4.post4¹                                                                     |
84
85
| **TensorRT-LLM**     | 1.0.0rc²                                                                         |
| **NIXL**             | 0.4.0                                                                            |
86

87
> [!Important]
88
> ¹ ai-dynamo-vllm `v0.8.4.post4` is a customized patch of `v0.8.4` from vLLM.
89
90
>
> ² Specific versions of TensorRT-LLM supported by Dynamo are subject to change.
91
92

## Build Support
93

94
95
**Dynamo** currently provides build support in the following ways:

96
97
98
99
100
- **Wheels**: Pre-built Python wheels are only available for **x86_64 Linux**.
   No wheels are available for other platforms at this time.

- **Container Images**: We distribute only the source code for container images, **x86_64 Linux** and **ARM64** are supported for these.
   Users must build the container image from source if they require it.
101

102
Once you've confirmed that your platform and architecture are compatible, you can install **Dynamo** by following the instructions in the [Quick Start Guide](https://github.com/ai-dynamo/dynamo/blob/main/README.md#installation).