@@ -20,7 +20,6 @@ trap clean_venv EXIT
|
||||
|
||||
function install_system_packages() {
|
||||
if command -v apt-get >/dev/null; then
|
||||
sed -i 's|ports.ubuntu.com|mirrors.tuna.tsinghua.edu.cn|g' /etc/apt/sources.list
|
||||
apt-get update -y && apt-get install -y gcc g++ cmake libnuma-dev wget git curl jq
|
||||
elif command -v yum >/dev/null; then
|
||||
yum update -y && yum install -y gcc g++ cmake numactl-devel wget git curl jq
|
||||
@@ -30,31 +29,56 @@ function install_system_packages() {
|
||||
}
|
||||
|
||||
function config_pip_mirror() {
|
||||
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
||||
pip config set global.index-url http://cache-service.nginx-pypi-cache.svc.cluster.local/pypi/simple
|
||||
pip config set global.trusted-host cache-service.nginx-pypi-cache.svc.cluster.local
|
||||
|
||||
if [ -f /etc/os-release ]; then
|
||||
. /etc/os-release
|
||||
case "$ID" in
|
||||
ubuntu|debian)
|
||||
sed -Ei 's@(ports|archive).ubuntu.com@cache-service.nginx-pypi-cache.svc.cluster.local:8081@g' /etc/apt/sources.list
|
||||
;;
|
||||
openEuler|centos|rhel|fedora)
|
||||
sed -Ei 's@https?://[^/]+/(openeuler|centos|fedora)@http://cache-service.nginx-pypi-cache.svc.cluster.local:8081/\1@g' /etc/yum.repos.d/*.repo
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
function install_binary_test() {
|
||||
|
||||
install_system_packages
|
||||
config_pip_mirror
|
||||
install_system_packages
|
||||
create_vllm_venv
|
||||
pip install -r ${SCRIPT_DIR}/../../docs/requirements-docs.txt
|
||||
|
||||
PIP_VLLM_VERSION=$(get_version pip_vllm_version)
|
||||
VLLM_VERSION=$(get_version vllm_version)
|
||||
PIP_VLLM_ASCEND_VERSION=$(get_version pip_vllm_ascend_version)
|
||||
_info "====> Install vllm==${PIP_VLLM_VERSION} and vllm-ascend ${PIP_VLLM_ASCEND_VERSION}"
|
||||
|
||||
# Setup extra-index-url for x86 & torch_npu dev version
|
||||
pip config set global.extra-index-url "https://download.pytorch.org/whl/cpu/ https://mirrors.huaweicloud.com/ascend/repos/pypi"
|
||||
# Setup extra-index-url for public PyPI mirror, Ascend packages, and PyTorch CPU wheels.
|
||||
local pip_extra_index_urls=(
|
||||
"https://mirrors.huaweicloud.com/repository/pypi/variant"
|
||||
"https://mirrors.huaweicloud.com/ascend/repos/pypi"
|
||||
"https://download.pytorch.org/whl/cpu/"
|
||||
)
|
||||
local IFS=" "
|
||||
pip config set global.extra-index-url "${pip_extra_index_urls[*]}"
|
||||
|
||||
pip install vllm=="$(get_version pip_vllm_version)"
|
||||
pip install vllm-ascend=="$(get_version pip_vllm_ascend_version)"
|
||||
# The vLLM version already in pypi, we install from pypi.
|
||||
pip install --default-timeout=300 --retries 3 vllm=="${PIP_VLLM_VERSION}"
|
||||
|
||||
pip install vllm-ascend=="${PIP_VLLM_ASCEND_VERSION}"
|
||||
|
||||
pip list | grep vllm
|
||||
|
||||
# Verify the installation
|
||||
_info "====> Run offline example test"
|
||||
pip install modelscope
|
||||
python3 "${SCRIPT_DIR}/../../examples/offline_inference_npu.py"
|
||||
cd ${SCRIPT_DIR}/../../examples && python3 ./offline_inference_npu.py
|
||||
cd -
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user