gpu.rocm.inc.md 10.2 KB
Newer Older
1
# --8<-- [start:installation]
2

3
vLLM supports AMD GPUs with ROCm 6.3 or above, and torch 2.8.0 and above.
4

5
6
7
!!! tip
    [Docker](#set-up-using-docker) is the recommended way to use vLLM on ROCm.

8
9
!!! warning
    There are no pre-built wheels for this device, so you must either use the pre-built Docker image or build vLLM from source.
10

11
12
# --8<-- [end:installation]
# --8<-- [start:requirements]
13

14
15
16
- GPU: MI200s (gfx90a), MI300 (gfx942), MI350 (gfx950), Radeon RX 7900 series (gfx1100/1101), Radeon RX 9000 series (gfx1200/1201)
- ROCm 6.3 or above
    - MI350 requires ROCm 7.0 or above
17

18
19
# --8<-- [end:requirements]
# --8<-- [start:set-up-using-python]
20

21
22
There is no extra information on creating a new Python environment for this device.

23
24
# --8<-- [end:set-up-using-python]
# --8<-- [start:pre-built-wheels]
25

26
Currently, there are no pre-built ROCm wheels.
27

28
29
# --8<-- [end:pre-built-wheels]
# --8<-- [start:build-wheel-from-source]
30

31
32
33
!!! tip
    - If you found that the following installation step does not work for you, please refer to [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base). Dockerfile is a form of installation steps.

34
35
0. Install prerequisites (skip if you are already in an environment/docker with the following installed):

36
37
    - [ROCm](https://rocm.docs.amd.com/en/latest/deploy/linux/index.html)
    - [PyTorch](https://pytorch.org/)
38

39
    For installing PyTorch, you can start from a fresh docker image, e.g, `rocm/pytorch:rocm7.0_ubuntu22.04_py3.10_pytorch_release_2.8.0`, `rocm/pytorch-nightly`. If you are using docker image, you can skip to Step 3.
40

41
42
    Alternatively, you can install PyTorch using PyTorch wheels. You can check PyTorch installation guide in PyTorch [Getting Started](https://pytorch.org/get-started/locally/). Example:

43
    ```bash
44
    # Install PyTorch
45
    pip uninstall torch -y
46
    pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/nightly/rocm7.0
47
    ```
48

49
1. Install [Triton for ROCm](https://github.com/ROCm/triton.git)
50

51
    Install ROCm's Triton following the instructions from [ROCm/triton](https://github.com/ROCm/triton.git)
52

53
    ```bash
54
55
    python3 -m pip install ninja cmake wheel pybind11
    pip uninstall -y triton
56
    git clone https://github.com/ROCm/triton.git
57
    cd triton
58
59
    # git checkout $TRITON_BRANCH
    git checkout f9e5bf54
60
61
    if [ ! -f setup.py ]; then cd python; fi
    python3 setup.py install
62
63
    cd ../..
    ```
64

65
    !!! note
66
67
        - The validated `$TRITON_BRANCH` can be found in the [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base).
        - If you see HTTP issue related to downloading packages during building triton, please try again as the HTTP error is intermittent.
68

69
2. Optionally, if you choose to use CK flash attention, you can install [flash attention for ROCm](https://github.com/Dao-AILab/flash-attention.git)
70

71
    Install ROCm's flash attention (v2.8.0) following the instructions from [ROCm/flash-attention](https://github.com/Dao-AILab/flash-attention#amd-rocm-support)
72

73
    For example, for ROCm 7.0, suppose your gfx arch is `gfx942`. To get your gfx architecture, run `rocminfo |grep gfx`.
74

75
    ```bash
76
    git clone https://github.com/Dao-AILab/flash-attention.git
77
    cd flash-attention
78
79
    # git checkout $FA_BRANCH
    git checkout 0e60e394
80
    git submodule update --init
81
    GPU_ARCHS="gfx942" python3 setup.py install
82
83
    cd ..
    ```
84

85
    !!! note
86
87
        - The validated `$FA_BRANCH` can be found in the [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base).

88

89
90
3. If you choose to build AITER yourself to use a certain branch or commit, you can build AITER using the following steps:

91
    ```bash
92
93
94
95
96
97
98
99
    python3 -m pip uninstall -y aiter
    git clone --recursive https://github.com/ROCm/aiter.git
    cd aiter
    git checkout $AITER_BRANCH_OR_COMMIT
    git submodule sync; git submodule update --init --recursive
    python3 setup.py develop
    ```

100
    !!! note
101
102
103
        - You will need to config the `$AITER_BRANCH_OR_COMMIT` for your purpose.
        - The validated `$AITER_BRANCH_OR_COMMIT` can be found in the [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base).
        
104

105
4. Build vLLM. For example, vLLM on ROCM 7.0 can be built with the following steps:
106

107
    ???+ console "Commands"
108
109
110
111
112
113
114
115
116
117
118
119
120
121

        ```bash
        pip install --upgrade pip

        # Build & install AMD SMI
        pip install /opt/rocm/share/amd_smi

        # Install dependencies
        pip install --upgrade numba \
            scipy \
            huggingface-hub[cli,hf_transfer] \
            setuptools_scm
        pip install -r requirements/rocm.txt

122
123
124
125
126
127
        # To build for a single architecture (e.g., MI300) for faster installation (recommended):
        export PYTORCH_ROCM_ARCH="gfx942"

        # To build vLLM for multiple arch MI210/MI250/MI300, use this instead
        # export PYTORCH_ROCM_ARCH="gfx90a;gfx942"

128
129
        python3 setup.py develop
        ```
130

131
    This may take 5-10 minutes. Currently, `pip install .` does not work for ROCm installation.
132

133
134
    !!! tip
        - The ROCm version of PyTorch, ideally, should match the ROCm driver version.
135

136
137
!!! tip
    - For MI300x (gfx942) users, to achieve optimal performance, please refer to [MI300x tuning guide](https://rocm.docs.amd.com/en/latest/how-to/tuning-guides/mi300x/index.html) for performance optimization and tuning tips on system and workflow level.
138
      For vLLM, please refer to [vLLM performance optimization](https://rocm.docs.amd.com/en/latest/how-to/rocm-for-ai/inference-optimization/vllm-optimization.html).
139

140
# --8<-- [end:build-wheel-from-source]
141
# --8<-- [start:pre-built-images]
142

143
144
The [AMD Infinity hub for vLLM](https://hub.docker.com/r/rocm/vllm/tags) offers a prebuilt, optimized
docker image designed for validating inference performance on the AMD Instinct™ MI300X accelerator.
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
AMD also offers nightly prebuilt docker image from [Docker Hub](https://hub.docker.com/r/rocm/vllm-dev), which has vLLM and all its dependencies installed.

???+ console "Commands"
    ```bash
    docker pull rocm/vllm-dev:nightly # to get the latest image
    docker run -it --rm \
    --network=host \
    --group-add=video \
    --ipc=host \
    --cap-add=SYS_PTRACE \
    --security-opt seccomp=unconfined \
    --device /dev/kfd \
    --device /dev/dri \
    -v <path/to/your/models>:/app/models \
    -e HF_HOME="/app/models" \
    rocm/vllm-dev:nightly
    ```
162

163
164
165
!!! tip
    Please check [LLM inference performance validation on AMD Instinct MI300X](https://rocm.docs.amd.com/en/latest/how-to/performance-validation/mi300x/vllm-benchmark.html)
    for instructions on how to use this prebuilt docker image.
166

167
168
# --8<-- [end:pre-built-images]
# --8<-- [start:build-image-from-source]
169
170
171

Building the Docker image from source is the recommended way to use vLLM with ROCm.

172
??? info "(Optional) Build an image with ROCm software stack"
173

174
175
176
    Build a docker image from [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base) which setup ROCm software stack needed by the vLLM.
    **This step is optional as this rocm_base image is usually prebuilt and store at [Docker Hub](https://hub.docker.com/r/rocm/vllm-dev) under tag `rocm/vllm-dev:base` to speed up user experience.**
    If you choose to build this rocm_base image yourself, the steps are as follows.
177

178
    It is important that the user kicks off the docker build using buildkit. Either the user put DOCKER_BUILDKIT=1 as environment variable when calling docker build command, or the user needs to set up buildkit in the docker daemon configuration /etc/docker/daemon.json as follows and restart the daemon:
179

180
181
182
183
184
    ```json
    {
        "features": {
            "buildkit": true
        }
185
    }
186
    ```
187

188
    To build vllm on ROCm 7.0 for MI200 and MI300 series, you can use the default:
189

190
191
192
193
194
    ```bash
    DOCKER_BUILDKIT=1 docker build \
        -f docker/Dockerfile.rocm_base \
        -t rocm/vllm-dev:base .
    ```
195
196
197

#### Build an image with vLLM

198
First, build a docker image from [docker/Dockerfile.rocm](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm) and launch a docker container from the image.
199
It is important that the user kicks off the docker build using buildkit. Either the user put `DOCKER_BUILDKIT=1` as environment variable when calling docker build command, or the user needs to set up buildkit in the docker daemon configuration /etc/docker/daemon.json as follows and restart the daemon:
200

201
```bash
202
203
204
205
206
207
208
{
    "features": {
        "buildkit": true
    }
}
```

209
[docker/Dockerfile.rocm](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm) uses ROCm 7.0 by default, but also supports ROCm 5.7, 6.0, 6.1, 6.2, 6.3, and 6.4, in older vLLM branches.
210
211
It provides flexibility to customize the build of docker image using the following arguments:

212
- `BASE_IMAGE`: specifies the base image used when running `docker build`. The default value `rocm/vllm-dev:base` is an image published and maintained by AMD. It is being built using [docker/Dockerfile.rocm_base](https://github.com/vllm-project/vllm/blob/main/docker/Dockerfile.rocm_base)
213
- `ARG_PYTORCH_ROCM_ARCH`: Allows to override the gfx architecture values from the base docker image
214
215
216

Their values can be passed in when running `docker build` with `--build-arg` options.

217
To build vllm on ROCm 7.0 for MI200 and MI300 series, you can use the default:
218

219
220
221
222
???+ console "Commands"
    ```bash
    DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile.rocm -t vllm-rocm .
    ```
223
224
225

To run the above docker image `vllm-rocm`, use the below command:

226
???+ console "Commands"
227
    ```bash
228
229
230
231
232
233
234
235
236
    docker run -it \
    --network=host \
    --group-add=video \
    --ipc=host \
    --cap-add=SYS_PTRACE \
    --security-opt seccomp=unconfined \
    --device /dev/kfd \
    --device /dev/dri \
    -v <path/to/model>:/app/model \
237
    vllm-rocm
238
    ```
239
240
241

Where the `<path/to/model>` is the location where the model is stored, for example, the weights for llama2 or llama3 models.

242
243
# --8<-- [end:build-image-from-source]
# --8<-- [start:supported-features]
244

245
See [Feature x Hardware](../../features/README.md#feature-x-hardware) compatibility matrix for feature support information.
246
247

# --8<-- [end:supported-features]