Skip to content

Commit 0747a6e

Browse files
authored
Bump vLLM version to v0.10.2 (#2914)
### What this PR does / why we need it? Bump vLLM version to v0.10.2 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI passed - vLLM version: v0.10.2rc3 - vLLM main: vllm-project/vllm@15b8fef Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
1 parent f97a64b commit 0747a6e

13 files changed

+16
-16
lines changed

.github/workflows/accuracy_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
uses: actions/checkout@v4
113113
with:
114114
repository: vllm-project/vllm
115-
ref: v0.10.2rc3
115+
ref: v0.10.2
116116
path: ./vllm-empty
117117

118118
- name: Install vllm-project/vllm from source

.github/workflows/nightly_benchmarks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
matrix:
5353
include:
54-
- vllm_branch: v0.10.2rc3
54+
- vllm_branch: v0.10.2
5555
vllm_ascend_branch: main
5656
vllm_use_v1: 1
5757
max-parallel: 1

.github/workflows/vllm_ascend_dist.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
matrix:
4545
os: [linux-aarch64-a3-8]
46-
vllm_version: [v0.10.2rc3]
46+
vllm_version: [v0.10.2]
4747
name: vLLM Ascend test
4848
runs-on: ${{ matrix.os }}
4949
container:

.github/workflows/vllm_ascend_test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
VLLM_USE_MODELSCOPE: True
8383
strategy:
8484
matrix:
85-
vllm_version: [v0.10.2rc3]
85+
vllm_version: [v0.10.2]
8686
steps:
8787
- name: Install packages
8888
run: |
@@ -138,7 +138,7 @@ jobs:
138138
max-parallel: 2
139139
matrix:
140140
os: [linux-aarch64-a2-1]
141-
vllm_version: [v0.10.2rc3]
141+
vllm_version: [v0.10.2]
142142
name: singlecard e2e test - light
143143
runs-on: ${{ matrix.os }}
144144
container:
@@ -203,7 +203,7 @@ jobs:
203203
max-parallel: 2
204204
matrix:
205205
os: [linux-aarch64-a2-2]
206-
vllm_version: [v0.10.2rc3]
206+
vllm_version: [v0.10.2]
207207
name: multicard e2e test - light
208208
runs-on: ${{ matrix.os }}
209209
container:

.github/workflows/vllm_ascend_test_310p.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
max-parallel: 2
5454
matrix:
5555
os: [linux-aarch64-310p-1, linux-aarch64-310p-4]
56-
vllm_version: [v0.10.2rc3]
56+
vllm_version: [v0.10.2]
5757
name: 310p e2e test
5858
runs-on: ${{ matrix.os }}
5959
container:

.github/workflows/vllm_ascend_test_full.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
max-parallel: 2
7373
matrix:
7474
os: [linux-aarch64-a2-1]
75-
vllm_version: [v0.10.2rc3]
75+
vllm_version: [v0.10.2]
7676
name: singlecard e2e test - full
7777
runs-on: ${{ matrix.os }}
7878
container:
@@ -156,7 +156,7 @@ jobs:
156156
max-parallel: 2
157157
matrix:
158158
os: [linux-aarch64-a2-2]
159-
vllm_version: [v0.10.2rc3]
159+
vllm_version: [v0.10.2]
160160
name: multicard e2e test - full
161161
runs-on: ${{ matrix.os }}
162162
container:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN pip config set global.index-url ${PIP_INDEX_URL}
3737

3838
# Install vLLM
3939
ARG VLLM_REPO=https://github.com/vllm-project/vllm.git
40-
ARG VLLM_TAG=v0.10.2rc3
40+
ARG VLLM_TAG=v0.10.2
4141
RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /vllm-workspace/vllm
4242
# In x86, triton will be installed by vllm. But in Ascend, triton doesn't work correctly. we need to uninstall it.
4343
RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install -v -e /vllm-workspace/vllm/ --extra-index https://download.pytorch.org/whl/cpu/ && \

Dockerfile.310p

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN pip config set global.index-url ${PIP_INDEX_URL}
3737

3838
# Install vLLM
3939
ARG VLLM_REPO=https://github.com/vllm-project/vllm.git
40-
ARG VLLM_TAG=v0.10.2rc3
40+
ARG VLLM_TAG=v0.10.2
4141
RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /vllm-workspace/vllm
4242
# In x86, triton will be installed by vllm. But in Ascend, triton doesn't work correctly. we need to uninstall it.
4343
RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install -v -e /vllm-workspace/vllm/ --extra-index https://download.pytorch.org/whl/cpu/ && \

Dockerfile.310p.openEuler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ COPY . /vllm-workspace/vllm-ascend/
3434

3535
# Install vLLM
3636
ARG VLLM_REPO=https://github.com/vllm-project/vllm.git
37-
ARG VLLM_TAG=v0.10.2rc3
37+
ARG VLLM_TAG=v0.10.2
3838

3939
RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /vllm-workspace/vllm
4040
# In x86, triton will be installed by vllm. But in Ascend, triton doesn't work correctly. we need to uninstall it.

Dockerfile.a3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN pip config set global.index-url ${PIP_INDEX_URL}
3737

3838
# Install vLLM
3939
ARG VLLM_REPO=https://github.com/vllm-project/vllm.git
40-
ARG VLLM_TAG=v0.10.2rc3
40+
ARG VLLM_TAG=v0.10.2
4141
RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /vllm-workspace/vllm
4242
# In x86, triton will be installed by vllm. But in Ascend, triton doesn't work correctly. we need to uninstall it.
4343
RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install -v -e /vllm-workspace/vllm/ --extra-index https://download.pytorch.org/whl/cpu/ && \

0 commit comments

Comments
 (0)