Skip to content

Commit 78ba14a

Browse files
committed
test 092rc1
Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
1 parent 9c886d0 commit 78ba14a

12 files changed

+18
-18
lines changed

.github/workflows/accuracy_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
# Current supported vLLM versions
3838
options:
3939
- main
40-
- v0.9.1
40+
- v0.9.2rc1
4141
- v0.7.3
4242
vllm-ascend-version:
4343
description: 'vllm-ascend version:'
@@ -163,7 +163,7 @@ jobs:
163163
repository: vllm-project/vllm
164164
path: ./vllm-empty
165165
# Please also update this when bump matched version
166-
ref: ${{ github.event.inputs.vllm-version || 'v0.9.1' }}
166+
ref: ${{ github.event.inputs.vllm-version || 'v0.9.2rc1' }}
167167

168168
- name: Install vllm-project/vllm from source
169169
working-directory: ./vllm-empty

.github/workflows/nightly_benchmarks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
include:
53-
- vllm_branch: v0.9.1
53+
- vllm_branch: v0.9.2rc1
5454
vllm_ascend_branch: main
5555
vllm_use_v1: 1
5656
max-parallel: 1

.github/workflows/vllm_ascend_test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ jobs:
132132
tools/mypy.sh 1 ${{ matrix.python-version }}
133133
134134
ut:
135-
needs: [lint]
135+
# needs: [lint]
136136
name: unit test
137137
# only trigger e2e test on [pull request after lint passed] and [merged commit]
138-
if: ${{ needs.lint.result == 'success' || github.event_name == 'push' }}
138+
# if: ${{ needs.lint.result == 'success' || github.event_name == 'push' }}
139139
runs-on: ubuntu-latest
140140
container:
141141
image: m.daocloud.io/quay.io/ascend/cann:8.1.rc1-910b-ubuntu22.04-py3.10
@@ -144,7 +144,7 @@ jobs:
144144
VLLM_USE_MODELSCOPE: True
145145
strategy:
146146
matrix:
147-
vllm_version: [main, v0.9.1]
147+
vllm_version: [main, v0.9.2rc1]
148148
steps:
149149
- name: Install packages
150150
run: |
@@ -201,7 +201,7 @@ jobs:
201201
max-parallel: 2
202202
matrix:
203203
os: [linux-arm64-npu-1]
204-
vllm_version: [main, v0.9.1]
204+
vllm_version: [main, v0.9.2rc1]
205205
name: singlecard e2e test
206206
runs-on: ${{ matrix.os }}
207207
container:
@@ -302,7 +302,7 @@ jobs:
302302
max-parallel: 1
303303
matrix:
304304
os: [linux-arm64-npu-4]
305-
vllm_version: [main, v0.9.1]
305+
vllm_version: [main, v0.9.2rc1]
306306
name: multicard e2e test
307307
runs-on: ${{ matrix.os }}
308308
container:

.github/workflows/vllm_ascend_test_long_term.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
max-parallel: 2
4444
matrix:
4545
os: [linux-arm64-npu-1, linux-arm64-npu-4]
46-
vllm_version: [main, v0.9.1]
46+
vllm_version: [main, v0.9.2rc1]
4747
name: vLLM Ascend long term test
4848
runs-on: ${{ matrix.os }}
4949
container:

.github/workflows/vllm_ascend_test_pd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
vllm_verison: [
4545
# revert me when V1 disaggregation prefill is merged in main
4646
# main,
47-
v0.9.1
47+
v0.9.2rc1
4848
]
4949
name: vLLM Ascend prefilling decoding disaggregation test
5050
runs-on: linux-arm64-npu-static-8

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.9.1
40+
ARG VLLM_TAG=v0.9.2rc1
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.9.1
40+
ARG VLLM_TAG=v0.9.2rc1
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.9.1
37+
ARG VLLM_TAG=v0.9.2rc1
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.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.9.1
37+
ARG VLLM_TAG=v0.9.2rc1
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.

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@
6565
# the branch of vllm, used in vllm clone
6666
# - main branch: 'main'
6767
# - vX.Y.Z branch: 'vX.Y.Z'
68-
'vllm_version': 'v0.9.1',
68+
'vllm_version': 'v0.9.2rc1',
6969
# the branch of vllm-ascend, used in vllm-ascend clone and image tag
7070
# - main branch: 'main'
7171
# - vX.Y.Z branch: latest vllm-ascend release tag
7272
'vllm_ascend_version': 'v0.9.1rc1',
7373
# the newest release version of vllm-ascend and matched vLLM, used in pip install.
7474
# This value should be updated when cut down release.
7575
'pip_vllm_ascend_version': "0.9.1rc1",
76-
'pip_vllm_version': "0.9.1",
76+
'pip_vllm_version': "0.9.2",
7777
# CANN image tag
7878
'cann_image_tag': "8.1.rc1-910b-ubuntu22.04-py3.10",
7979
}

0 commit comments

Comments
 (0)