"vscode:/vscode.git/clone" did not exist on "a54ed8024953dc6b59906072a7a89cd4791ec4f0"
Dockerfile.rocm 4.8 KB
Newer Older
1
2
3
4
# default base image
ARG REMOTE_VLLM="0"
ARG COMMON_WORKDIR=/app
ARG BASE_IMAGE=rocm/vllm-dev:base
5

6
FROM ${BASE_IMAGE} AS base
7

8
9
ARG ARG_PYTORCH_ROCM_ARCH
ENV PYTORCH_ROCM_ARCH=${ARG_PYTORCH_ROCM_ARCH:-${PYTORCH_ROCM_ARCH}}
10
11

# Install some basic utilities
12
RUN apt-get update -q -y && apt-get install -q -y \
13
14
    sqlite3 libsqlite3-dev libfmt-dev libmsgpack-dev libsuitesparse-dev \
    apt-transport-https ca-certificates wget curl
15
# Remove sccache
16
RUN python3 -m pip install --upgrade pip
17
RUN apt-get purge -y sccache; python3 -m pip uninstall -y sccache; rm -f "$(which sccache)"
18
19
20
21
22
23
24
25
26
27
28
29
30
31

# Install UV
RUN curl -LsSf https://astral.sh/uv/install.sh | sh

# Activate virtual environment and add uv to PATH
ENV PATH="/root/.local/bin:$PATH"

# This timeout (in seconds) is necessary when installing some dependencies via uv since it's likely to time out
# Reference: https://github.com/astral-sh/uv/pull/1694
ENV UV_HTTP_TIMEOUT=500
ENV UV_INDEX_STRATEGY="unsafe-best-match"
# Use copy mode to avoid hardlink failures with Docker cache mounts
ENV UV_LINK_MODE=copy

32
33
34
35
36
37
38
39
40
41
42
43
44
ARG COMMON_WORKDIR
WORKDIR ${COMMON_WORKDIR}


# -----------------------
# vLLM fetch stages
FROM base AS fetch_vllm_0
ONBUILD COPY ./ vllm/
FROM base AS fetch_vllm_1
ARG VLLM_REPO="https://github.com/vllm-project/vllm.git"
ARG VLLM_BRANCH="main"
ONBUILD RUN git clone ${VLLM_REPO} \
	    && cd vllm \
45
	    && git fetch -v --prune -- origin ${VLLM_BRANCH} \
46
47
48
49
	    && git checkout FETCH_HEAD \
        && if [ ${VLLM_REPO} != "https://github.com/vllm-project/vllm.git" ] ; then \
               git remote add upstream "https://github.com/vllm-project/vllm.git" \
               && git fetch upstream ; fi
50
51
52
53
54
55
56
FROM fetch_vllm_${REMOTE_VLLM} AS fetch_vllm

# -----------------------
# vLLM build stages
FROM fetch_vllm AS build_vllm
# Build vLLM
RUN cd vllm \
57
    && python3 -m pip install -r requirements/rocm.txt \
58
59
60
61
62
    && python3 setup.py clean --all  \
    && python3 setup.py bdist_wheel --dist-dir=dist
FROM scratch AS export_vllm
ARG COMMON_WORKDIR
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/dist/*.whl /
63
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/requirements /requirements
64
65
66
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/benchmarks /benchmarks
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/tests /tests
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/examples /examples
67
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/docker/Dockerfile.rocm /docker/
68
69
70
71
72
73
74
75
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm/.buildkite /.buildkite

# -----------------------
# Test vLLM image
FROM base AS test

RUN python3 -m pip install --upgrade pip && rm -rf /var/lib/apt/lists/*

76
77
# Install vLLM using uv (inherited from base stage)
# Note: No -U flag to avoid upgrading PyTorch ROCm to CUDA version
78
RUN --mount=type=bind,from=export_vllm,src=/,target=/install \
79
    --mount=type=cache,target=/root/.cache/uv \
80
    cd /install \
81
82
    && uv pip install --system -r requirements/rocm.txt \
    && uv pip install --system -r requirements/rocm-test.txt \
83
    && pip uninstall -y vllm \
84
    && uv pip install --system *.whl
85
86
87
88

WORKDIR /vllm-workspace
ARG COMMON_WORKDIR
COPY --from=build_vllm ${COMMON_WORKDIR}/vllm /vllm-workspace
89

90
91
92
93
# install development dependencies (for testing)
RUN cd /vllm-workspace \
    && rm -rf vllm \
    && python3 -m pip install -e tests/vllm_test_utils \
94
    && python3 -m pip install pytest-shard
95

96
97
# -----------------------
# Final vLLM image
98
FROM base AS final
99

100
101
102
103
104
105
106
RUN python3 -m pip install --upgrade pip && rm -rf /var/lib/apt/lists/*
# Error related to odd state for numpy 1.20.3 where there is no METADATA etc, but an extra LICENSES_bundled.txt.
# Manually remove it so that later steps of numpy upgrade can continue
RUN case "$(which python3)" in \
        *"/opt/conda/envs/py_3.9"*) \
            rm -rf /opt/conda/envs/py_3.9/lib/python3.9/site-packages/numpy-1.20.3.dist-info/;; \
        *) ;; esac
107

108
109
RUN --mount=type=cache,target=/root/.cache/uv \
    uv pip install --system --upgrade huggingface-hub[cli]
110

111
112
# Install vLLM using uv (inherited from base stage)
# Note: No -U flag to avoid upgrading PyTorch ROCm to CUDA version
113
RUN --mount=type=bind,from=export_vllm,src=/,target=/install \
114
    --mount=type=cache,target=/root/.cache/uv \
115
    cd /install \
116
    && uv pip install --system -r requirements/rocm.txt \
117
    && pip uninstall -y vllm \
118
    && uv pip install --system *.whl
119
120
121
122
123
124

ARG COMMON_WORKDIR

# Copy over the benchmark scripts as well
COPY --from=export_vllm /benchmarks ${COMMON_WORKDIR}/vllm/benchmarks
COPY --from=export_vllm /examples ${COMMON_WORKDIR}/vllm/examples
125
COPY --from=export_vllm /docker ${COMMON_WORKDIR}/vllm/docker
126

127
ENV RAY_EXPERIMENTAL_NOSET_ROCR_VISIBLE_DEVICES=1
128
ENV RAY_EXPERIMENTAL_NOSET_HIP_VISIBLE_DEVICES=1
129
ENV TOKENIZERS_PARALLELISM=false
130

131
132
133
# ENV that can improve safe tensor loading, and end-to-end time
ENV SAFETENSORS_FAST_GPU=1

134
135
# Performance environment variable.
ENV HIP_FORCE_DEV_KERNARG=1
youkaichao's avatar
youkaichao committed
136

137
CMD ["/bin/bash"]