Skip to content

Commit bea9fdc

Browse files
Update vLLM version to v0.10.0 (#2061)
Signed-off-by: CICD-at-OPEA <[email protected]> Co-authored-by: chen, suyue <[email protected]>
1 parent 2dd176e commit bea9fdc

20 files changed

+21
-17
lines changed

.github/env/_build_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# Copyright (C) 2025 Intel Corporation
33
# SPDX-License-Identifier: Apache-2.0
44

5-
export VLLM_VER=v0.9.0.1
5+
export VLLM_VER=v0.10.0
66
export VLLM_FORK_VER=v0.6.6.post1+Gaudi-1.20.0

AudioQnA/docker_compose/intel/cpu/xeon/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ services:
4040
LLM_MODEL_ID: ${LLM_MODEL_ID}
4141
VLLM_TORCH_PROFILER_DIR: "/mnt"
4242
LLM_SERVER_PORT: ${LLM_SERVER_PORT}
43+
VLLM_CPU_OMP_THREADS_BIND: all
4344
healthcheck:
4445
test: ["CMD-SHELL", "curl -f http://$host_ip:${LLM_SERVER_PORT}/health || exit 1"]
4546
interval: 10s

AudioQnA/docker_compose/intel/cpu/xeon/compose_multilang.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ services:
4444
LLM_MODEL_ID: ${LLM_MODEL_ID}
4545
VLLM_TORCH_PROFILER_DIR: "/mnt"
4646
LLM_SERVER_PORT: ${LLM_SERVER_PORT}
47+
VLLM_CPU_OMP_THREADS_BIND: all
4748
healthcheck:
4849
test: ["CMD-SHELL", "curl -f http://$host_ip:${LLM_SERVER_PORT}/health || exit 1"]
4950
interval: 10s

AudioQnA/tests/test_compose_multilang_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function build_docker_images() {
2727

2828
git clone https://github.com/vllm-project/vllm.git
2929
cd ./vllm/
30-
VLLM_VER=v0.9.0.1
30+
VLLM_VER=v0.10.0
3131
echo "Check out vLLM tag ${VLLM_VER}"
3232
git checkout ${VLLM_VER} &> /dev/null && cd ../
3333

AudioQnA/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function build_docker_images() {
2727

2828
git clone https://github.com/vllm-project/vllm.git
2929
cd ./vllm/
30-
VLLM_VER=v0.9.0.1
30+
VLLM_VER=v0.10.0
3131
echo "Check out vLLM tag ${VLLM_VER}"
3232
git checkout ${VLLM_VER} &> /dev/null && cd ../
3333

ChatQnA/docker_compose/intel/cpu/xeon/compose_faqgen.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ services:
8383
vllm-service:
8484
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
8585
container_name: vllm-server
86+
privileged: true
8687
ports:
8788
- ${LLM_ENDPOINT_PORT:-9009}:80
8889
volumes:

ChatQnA/tests/test_compose_faqgen_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER=v0.9.0.1
27+
VLLM_VER=v0.10.0
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null && cd ../
3030

ChatQnA/tests/test_compose_faqgen_tgi_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER=v0.9.0.1
27+
VLLM_VER=v0.10.0
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null && cd ../
3030

ChatQnA/tests/test_compose_mariadb_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER=v0.9.0.1
27+
VLLM_VER=v0.10.0
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null
3030
# make sure NOT change the pwd

ChatQnA/tests/test_compose_milvus_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function build_docker_images() {
2525
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2626
popd && sleep 1s
2727
git clone https://github.com/vllm-project/vllm.git && cd vllm
28-
VLLM_VER=v0.9.0.1
28+
VLLM_VER=v0.10.0
2929
echo "Check out vLLM tag ${VLLM_VER}"
3030
git checkout ${VLLM_VER} &> /dev/null
3131
# make sure NOT change the pwd

0 commit comments

Comments
 (0)