From 261f8ba326251a537479da61d5bd1e39907a631e Mon Sep 17 00:00:00 2001 From: Gregory Shtrasberg Date: Sat, 2 Nov 2024 00:07:01 +0000 Subject: [PATCH] Using a ROCm6.2.2 base image with torch version that doesn't support aotriton so that the base image won't have it and we can rebuild torch --- Dockerfile.rocm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.rocm b/Dockerfile.rocm index 47d4d35bd088a..f5b3947ba4558 100644 --- a/Dockerfile.rocm +++ b/Dockerfile.rocm @@ -1,11 +1,11 @@ # default base image -ARG BASE_IMAGE="rocm/pytorch:rocm6.2_ubuntu20.04_py3.9_pytorch_release_2.3.0" +ARG BASE_IMAGE="rocm/pytorch:rocm6.2.2_ubuntu20.04_py3.9_pytorch_release_2.1.2" ARG COMMON_WORKDIR=/app # The following ARGs should be "0" or "1". If "1", the respective component will be built and installed on top of the base image ARG BUILD_HIPBLASLT="0" -ARG BUILD_RCCL="1" +ARG BUILD_RCCL="0" ARG BUILD_FA="1" ARG BUILD_TRITON="1" ARG BUILD_PYTORCH="1"