Skip to content

Commit 4ff722a

Browse files
JArnoldAMDsanyalingtongshtrassimon-moWoosukKwon
authored
Update to Unified ROCm 6.2 base image (#155)
* optimizations for process output step * Llama3.1 (#129) * Add support for a rope extension method (vllm-project#6553) * [BugFix] Fix RoPE error in Llama 3.1 (vllm-project#6693) --------- Co-authored-by: Simon Mo <[email protected]> Co-authored-by: Woosuk Kwon <[email protected]> * Update hipblaslt and FA revs to match what was used for MLPerf * Switch to "unified docker" with a ROCm 6.2 base image This base image includes current libraries, so there is no need for us to rebuild hipblaslt, RCCL, and Flash Attention. --------- Co-authored-by: Shomy <[email protected]> Co-authored-by: Gregory Shtrasberg <[email protected]> Co-authored-by: Simon Mo <[email protected]> Co-authored-by: Woosuk Kwon <[email protected]>
1 parent 0c7a2b6 commit 4ff722a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile.rocm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# default base image
2-
ARG BASE_IMAGE="rocm/pytorch:rocm6.1.2_ubuntu20.04_py3.9_pytorch_staging"
2+
ARG BASE_IMAGE="rocm/pytorch-private:20240819_exec_dashboard_unified_rc3_added_triton_fa_vllm"
33

44
ARG COMMON_WORKDIR=/app
55

66
# The following ARGs should be "0" or "1". If "1", the respective component will be built and installed on top of the base image
7-
ARG BUILD_HIPBLASLT="1"
8-
ARG BUILD_RCCL="1"
9-
ARG BUILD_FA="1"
7+
ARG BUILD_HIPBLASLT="0"
8+
ARG BUILD_RCCL="0"
9+
ARG BUILD_FA="0"
1010
ARG BUILD_CUPY="0"
1111
ARG BUILD_TRITON="1"
1212
# This ARG should also be "0" or "1". If "1", the vLLM development directory is obtained via git clone.
@@ -26,7 +26,7 @@ ARG PYTORCH_ROCM_ARCH="gfx90a;gfx942"
2626
ENV PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH}
2727

2828
# Install some basic utilities
29-
RUN apt-get update && apt-get install python3 python3-pip -
29+
RUN apt-get update && apt-get install -y python3 python3-pip -
3030
RUN apt-get update && apt-get install -y \
3131
sqlite3 libsqlite3-dev libfmt-dev libmsgpack-dev libsuitesparse-dev
3232

0 commit comments

Comments
 (0)