Skip to content

Commit 2b17421

Browse files
authored
Using ROCm6.3 release image as a base (#308)
1 parent da8f61a commit 2b17421

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: Dockerfile.base

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=rocm/dev-ubuntu-22.04:6.2.4-complete
1+
ARG BASE_IMAGE=rocm/dev-ubuntu-22.04:6.3-complete
22
FROM ${BASE_IMAGE} AS base
33

44
ENV PATH=/opt/rocm/llvm/bin:$PATH
@@ -30,8 +30,8 @@ RUN pip install -U packaging cmake ninja wheel setuptools Cython
3030

3131
FROM base AS build_hipblaslt
3232
ARG HIPBLASLT_BRANCH="507a649"
33-
# Unset the following on ROCm6.3+
34-
ARG LEGACY_HIPBLASLT_OPTION="--legacy_hipblas_direct"
33+
# Set to "--legacy_hipblas_direct" for ROCm<=6.2
34+
ARG LEGACY_HIPBLASLT_OPTION=
3535
RUN git clone https://github.com/ROCm/hipBLASLt
3636
RUN cd hipBLASLt \
3737
&& git checkout ${HIPBLASLT_BRANCH} \

Diff for: Dockerfile.rocm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG REMOTE_VLLM="0"
33
ARG USE_CYTHON="0"
44
ARG BUILD_RPD="1"
55
ARG COMMON_WORKDIR=/app
6-
ARG BASE_IMAGE=rocm/vllm-dev:base_ubuntu22.04_py3.12_ROCm6.2.4_hipblaslt0.11_torch2.6
6+
ARG BASE_IMAGE=rocm/vllm-dev:base_ubuntu22.04_py3.12_ROCm6.3_hipblaslt0.11_torch2.6
77

88
FROM ${BASE_IMAGE} AS base
99

0 commit comments

Comments
 (0)