support_matrix.md 3.43 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
# Dynamo Support Matrix

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

## Hardware Compatibility


| **CPU Architecture**  | **Status**    |
|-----------------------|---------------|
| **x86_64**            | Supported     |
| **ARM64**             | Experimental  |

Yiming Cheng's avatar
Yiming Cheng committed
13
> **Note**: 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.
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

### GPU Compatibility

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

| **GPU Architecture**                | **Status**    |
|-------------------------------------|---------------|
| **NVIDIA Blackwell Architecture**   | Supported     |
| **NVIDIA Hopper Architecture**      | Supported     |
| **NVIDIA Ada Lovelace Architecture**| Supported     |
| **NVIDIA Ampere Architecture**      | Supported     |

## Platform Architecture Compatibility

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

30
31
| **Operating System** | **Version** | **Architecture** | **Status**   |
|----------------------|-------------|------------------|--------------|
32
| **Ubuntu**           | 22.04       | x86_64           | Supported    |
33
34
| **Ubuntu**           | 24.04       | x86_64           | Supported    |
| **Ubuntu**           | 24.04       | ARM64            | Experimental |
35
| **CentOS Stream**    | 9           | x86_64           | Experimental |
36

37
> **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.
38
39

## Software Compatibility
40
### Runtime Dependency
41
42
43
44
45
46
| **Python Package** | **Version**   | glibc version        | CUDA Version |
|--------------------|---------------|----------------------|--------------|
| ai-dynamo          |    0.2.0      |     >=2.28           |              |
| ai-dynamo-runtime  |    0.2.0      |     >=2.28           |              |
| ai-dynamo-vllm     |  0.8.4* | >=2.28 (recommended) |                    |
| NIXL               |    0.2.0      |     >=2.27           | >=11.8      |
47
48

### Build Dependency
49
50
| **Build Dependency** | **Version** |
|----------------------|-------------|
51
52
| **Base Container**   |    [25.03](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda-dl-base/tags)    |
| **ai-dynamo-vllm**   |0.8.4* |
53
| **TensorRT-LLM**     |    0.19.0** |
54
| **NIXL**             |    0.2.0    |
55
56

> **Note**:
57
> - *ai-dynamo-vllm v0.8.4 is a customized patch of v0.8.4 from vLLM.
58
59
60
61
62
63
64
> - **The specific version of TensorRT-LLM (planned v0.19.0) that will be supported by Dynamo is subject to change.


## Build Support
**Dynamo** currently provides build support in the following ways:

- **Wheels**: Pre-built Python wheels are only available for **x86_64 Linux**. No wheels are available for other platforms at this time.
65
- **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.
66

67
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).