Skip to content

Commit 881c675

Browse files
authored
[ROCm] [CI] [Docker] Point to use the latest vLLM v0.16.0 stable version (vllm-project#1500)
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com>
1 parent d05212c commit 881c675

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docker/Dockerfile.rocm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=vllm/vllm-openai-rocm:v0.15.0
1+
ARG BASE_IMAGE=vllm/vllm-openai-rocm:v0.16.0
22
FROM ${BASE_IMAGE} AS base
33

44
# Declare a variable to know if we want to use the nightly build or the stable build.
@@ -9,7 +9,7 @@ FROM ${BASE_IMAGE} AS base
99
# 2. Whenever vLLM upstream has released a stable version,
1010
# we should swap over to use stable release ASAP.
1111
# We should avoid relying on custom commits.
12-
ARG USE_NIGHTLY_BUILD=1
12+
ARG USE_NIGHTLY_BUILD=0
1313
ARG VLLM_VERSION_OR_COMMIT_HASH=2d5be1dd5ce2e44dfea53ea03ff61143da5137eb
1414
ARG ARG_PYTORCH_ROCM_ARCH
1515
ENV PYTORCH_ROCM_ARCH=${ARG_PYTORCH_ROCM_ARCH:-${PYTORCH_ROCM_ARCH}}

docs/getting_started/installation/gpu/rocm.inc.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ vLLM-Omni current recommends the steps in under setup through Docker Images.
1313

1414
vLLM-Omni is built based on vLLM. Please install it with command below.
1515
```bash
16-
uv pip install vllm==0.14.0+rocm700 --extra-index-url https://wheels.vllm.ai/rocm/0.14.0/rocm700
16+
uv pip install vllm==0.16.0+rocm700 --extra-index-url https://wheels.vllm.ai/rocm/0.16.0/rocm700
1717
```
1818

1919
#### Installation of vLLM-Omni
@@ -34,13 +34,13 @@ uv pip install onnxruntime-rocm sox
3434
# --8<-- [start:build-wheel-from-source]
3535

3636
#### Installation of vLLM
37-
If you do not need to modify source code of vLLM, you can directly install the stable 0.14.0 release version of the library
37+
If you do not need to modify source code of vLLM, you can directly install the stable 0.16.0 release version of the library
3838

3939
```bash
40-
uv pip install vllm==0.14.0+rocm700 --extra-index-url https://wheels.vllm.ai/rocm/0.14.0/rocm700
40+
uv pip install vllm==0.16.0+rocm700 --extra-index-url https://wheels.vllm.ai/rocm/0.16.0/rocm700
4141
```
4242

43-
The release 0.14.0 of vLLM requires ROCm 7.0 environment.
43+
The release 0.16.0 of vLLM requires ROCm 7.0 environment.
4444

4545
#### Installation of vLLM-Omni
4646
Since vllm-omni is rapidly evolving, it's recommended to install it from source
@@ -58,7 +58,7 @@ If you want to check, modify or debug with source code of vLLM, install the libr
5858
```bash
5959
git clone https://github.com/vllm-project/vllm.git
6060
cd vllm
61-
git checkout v0.14.0
61+
git checkout v0.16.0
6262
python3 -m pip install -r requirements/rocm.txt
6363
python3 setup.py develop
6464
```

0 commit comments

Comments
 (0)