ci_install_dependency.sh 2.67 KB
Newer Older
1
#!/bin/bash
2
# Install the dependency in CI.
3
set -euxo pipefail
Lianmin Zheng's avatar
Lianmin Zheng committed
4

5
IS_BLACKWELL=${IS_BLACKWELL:-0}
fzyzcjy's avatar
fzyzcjy committed
6

7
if [ "$IS_BLACKWELL" = "1" ]; then
fzyzcjy's avatar
fzyzcjy committed
8
    CU_VERSION="cu129"
9
10
else
    CU_VERSION="cu126"
fzyzcjy's avatar
fzyzcjy committed
11
12
fi

Cheng Wan's avatar
Cheng Wan committed
13
14
15
# Clear torch compilation cache
python3 -c 'import os, shutil, tempfile, getpass; cache_dir = os.environ.get("TORCHINDUCTOR_CACHE_DIR") or os.path.join(tempfile.gettempdir(), "torchinductor_" + getpass.getuser()); shutil.rmtree(cache_dir, ignore_errors=True)'

16
# Kill existing processes
17
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18
bash "${SCRIPT_DIR}/../killall_sglang.sh"
19

20
21
22
23
24
25
26
27
28
# Install apt packages
apt install -y git libnuma-dev

# Install uv
if [ "$IS_BLACKWELL" = "1" ]; then
    # The blackwell CI runner has some issues with pip and uv,
    # so we can only use pip with `--break-system-packages`
    PIP_CMD="pip"
    PIP_INSTALL_SUFFIX="--break-system-packages"
fzyzcjy's avatar
fzyzcjy committed
29

30
31
32
33
    # Clean up existing installations
    $PIP_CMD uninstall -y flashinfer_python sgl-kernel sglang vllm $PIP_INSTALL_SUFFIX || true
else
    # In normal cases, we use uv, which is much faster than pip.
Cheng Wan's avatar
Cheng Wan committed
34
    pip install --upgrade pip
35
36
    pip install uv
    export UV_SYSTEM_PYTHON=true
37

38
39
40
41
42
43
    PIP_CMD="uv pip"
    PIP_INSTALL_SUFFIX="--index-strategy unsafe-best-match"

    # Clean up existing installations
    $PIP_CMD uninstall flashinfer_python sgl-kernel sglang vllm || true
fi
Xiaoyu Zhang's avatar
Xiaoyu Zhang committed
44
45

# Install the main package
46
$PIP_CMD install -e "python[dev]" --extra-index-url https://download.pytorch.org/whl/${CU_VERSION} $PIP_INSTALL_SUFFIX
Xiaoyu Zhang's avatar
Xiaoyu Zhang committed
47

48
49
50
51
# Install router for pd-disagg test
SGLANG_ROUTER_BUILD_NO_RUST=1 $PIP_CMD install -e "sgl-router" $PIP_INSTALL_SUFFIX


52
if [ "$IS_BLACKWELL" = "1" ]; then
53
    # TODO auto determine sgl-kernel version
54
    SGL_KERNEL_VERSION=0.3.9
55
    $PIP_CMD install https://github.com/sgl-project/whl/releases/download/v${SGL_KERNEL_VERSION}/sgl_kernel-${SGL_KERNEL_VERSION}+cu128-cp310-abi3-manylinux2014_x86_64.whl --force-reinstall $PIP_INSTALL_SUFFIX
56
57
fi

58
# Show current packages
59
$PIP_CMD list
60

Xiaoyu Zhang's avatar
Xiaoyu Zhang committed
61
# Install additional dependencies
62
$PIP_CMD install mooncake-transfer-engine==0.3.5 nvidia-cuda-nvrtc-cu12 py-spy huggingface_hub[hf_xet] $PIP_INSTALL_SUFFIX
63

64
if [ "$IS_BLACKWELL" != "1" ]; then
fzyzcjy's avatar
fzyzcjy committed
65
66
    # For lmms_evals evaluating MMMU
    git clone --branch v0.3.3 --depth 1 https://github.com/EvolvingLMMs-Lab/lmms-eval.git
67
    $PIP_CMD install -e lmms-eval/ $PIP_INSTALL_SUFFIX
68

fzyzcjy's avatar
fzyzcjy committed
69
    # Install xformers
70
    $PIP_CMD install xformers --index-url https://download.pytorch.org/whl/${CU_VERSION} --no-deps $PIP_INSTALL_SUFFIX
fzyzcjy's avatar
fzyzcjy committed
71
fi
72

73
74
# Install FlashMLA for attention backend tests
# $PIP_CMD install git+https://github.com/deepseek-ai/FlashMLA.git $PIP_INSTALL_SUFFIX
Mick's avatar
Mick committed
75

76
# Show current packages
77
78
79
$PIP_CMD list

echo "CUDA_VISIBLE_DEVICES=${CUDA_VISIBLE_DEVICES:-}"