Skip to content

Commit ca01a6d

Browse files
author
wangyongjun
committed
[Doc] add qwen3 reranker tutorials
Signed-off-by: Jeaniowang <[email protected]>
2 parents 2ddc73c + 67f2b3a commit ca01a6d

File tree

409 files changed

+28722
-12474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

409 files changed

+28722
-12474
lines changed

.github/Dockerfile.buildwheel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# This file is a part of the vllm-ascend project.
1616
#
1717
ARG PY_VERSION=3.11
18-
FROM quay.io/ascend/manylinux:8.0.0-910b-manylinux_2_28-py${PY_VERSION}
18+
FROM quay.io/ascend/manylinux:8.3.rc1-910b-manylinux_2_28-py${PY_VERSION}
1919

2020
ARG COMPILE_CUSTOM_KERNELS=1
2121

.github/Dockerfile.nightly.a2

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
# This file is a part of the vllm-ascend project.
16+
#
17+
18+
FROM quay.io/ascend/vllm-ascend:main
19+
20+
ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
21+
ARG AIS_BENCH_TAG="v3.0-20250930-master"
22+
ARG AIS_BENCH_URL="https://gitee.com/aisbench/benchmark.git"
23+
24+
# Define environments
25+
ENV DEBIAN_FRONTEND=noninteractive
26+
ENV COMPILE_CUSTOM_KERNELS=${COMPILE_CUSTOM_KERNELS}
27+
28+
WORKDIR /workspace
29+
30+
RUN pip config set global.index-url ${PIP_INDEX_URL}
31+
32+
# Install requirements-dev.txt for tests
33+
RUN export PIP_EXTRA_INDEX_URL=https://mirrors.huaweicloud.com/ascend/repos/pypi && \
34+
cd /vllm-workspace/vllm-ascend && \
35+
python3 -m pip install -r requirements-dev.txt && \
36+
python3 -m pip cache purge
37+
38+
# Install benchmark tools
39+
RUN git clone -b ${AIS_BENCH_TAG} --depth 1 ${AIS_BENCH_URL} /vllm-workspace/vllm-ascend/benchmark && \
40+
cd /vllm-workspace/vllm-ascend/benchmark && \
41+
pip install -e . -r requirements/api.txt -r requirements/extra.txt && \
42+
python3 -m pip cache purge
43+
44+
CMD ["/bin/bash"]

.github/Dockerfile.nightly.a3

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
# This file is a part of the vllm-ascend project.
16+
#
17+
18+
FROM quay.io/ascend/vllm-ascend:main-a3
19+
20+
ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
21+
ARG AIS_BENCH_TAG="v3.0-20250930-master"
22+
ARG AIS_BENCH_URL="https://gitee.com/aisbench/benchmark.git"
23+
24+
# Define environments
25+
ENV DEBIAN_FRONTEND=noninteractive
26+
ENV COMPILE_CUSTOM_KERNELS=${COMPILE_CUSTOM_KERNELS}
27+
28+
WORKDIR /workspace
29+
30+
RUN pip config set global.index-url ${PIP_INDEX_URL}
31+
32+
# Install requirements-dev.txt for tests
33+
RUN export PIP_EXTRA_INDEX_URL=https://mirrors.huaweicloud.com/ascend/repos/pypi && \
34+
cd /vllm-workspace/vllm-ascend && \
35+
python3 -m pip install -r requirements-dev.txt && \
36+
python3 -m pip cache purge
37+
38+
# Install benchmark tools
39+
RUN git clone -b ${AIS_BENCH_TAG} --depth 1 ${AIS_BENCH_URL} /vllm-workspace/vllm-ascend/benchmark && \
40+
cd /vllm-workspace/vllm-ascend/benchmark && \
41+
pip install -e . -r requirements/api.txt -r requirements/extra.txt && \
42+
python3 -m pip cache purge
43+
44+
CMD ["/bin/bash"]

.github/workflows/_e2e_nightly.yaml

Lines changed: 0 additions & 105 deletions
This file was deleted.

0 commit comments

Comments
 (0)