support_matrix.md 3 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  |

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
32
33
| **Operating System** | **Version** | **Architecture** | **Status**   |
|----------------------|-------------|------------------|--------------|
| **Ubuntu**           | 24.04       | x86_64           | Supported    |
| **Ubuntu**           | 24.04       | ARM64            | Experimental |
34
35
36
37

> **Note**: For **Linux**, the **ARM64** support is experimental and may have limitations.

## Software Compatibility
38
39
40
41
42
43
44
45
46
### Runtime Dependency
| **Python Package** | **Version** | glibc version |
|--------------------|-------------|---------------|
| ai-dynamo          |    0.1.0    | 2.39          |
| ai-dynamo-runtime  |    0.1.0    | 2.39          |
| ai-dynamo-vllm     |    0.7.2*   | 2.39          |
| NIXL               |    0.1.0    | 2.39          |

### Build Dependency
47
48
49
50
51
52
| **Build Dependency** | **Version** |
|----------------------|-------------|
| **Base Container**   |    [25.01](https://hub.docker.com/layers/nvidia/cuda/12.8.1-runtime-ubuntu24.04/images/sha256-828c4d878adcaa4265d80c95d8ec877149b49bb2419a4cf3bb6aa889bbb7ca2e)    |
| **ai-dynamo-vllm**   |    0.7.2*   |
| **TensorRT-LLM**     |    0.19.0** |
| **NIXL**             |    0.1.0    |
53
54

> **Note**:
55
> - *ai-dynamo-vllm v0.7.2 is a customized patch of v0.7.2 from vLLM.
56
57
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.
- **Container Images**: We distribute only the source code for container images, and only **x86_64 Linux** is supported for these. Users must build the container image from source if they require it.

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