From faf04ea7c41f42b78d515f7c60a7e9b92fa399f7 Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Thu, 9 Oct 2025 13:10:56 +0530 Subject: [PATCH 1/6] [rocm7.1] remove conda install --- manywheel/Dockerfile_2_28 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index f1a70d101..804d047aa 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -122,9 +122,9 @@ FROM common as cpu_final ARG BASE_CUDA_VERSION=11.8 ARG DEVTOOLSET_VERSION=13 # Install Anaconda -ADD ./common/install_conda_docker.sh install_conda.sh -RUN bash ./install_conda.sh && rm install_conda.sh -ENV PATH /opt/conda/bin:$PATH +#ADD ./common/install_conda_docker.sh install_conda.sh +#RUN bash ./install_conda.sh && rm install_conda.sh +#ENV PATH /opt/conda/bin:$PATH # Ensure the expected devtoolset is used ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH From cbec5e808860202d0821f529b927f1c2761ca572 Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:52:51 +0530 Subject: [PATCH 2/6] Update Dockerfile_2_28 --- manywheel/Dockerfile_2_28 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index 804d047aa..f1a70d101 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -122,9 +122,9 @@ FROM common as cpu_final ARG BASE_CUDA_VERSION=11.8 ARG DEVTOOLSET_VERSION=13 # Install Anaconda -#ADD ./common/install_conda_docker.sh install_conda.sh -#RUN bash ./install_conda.sh && rm install_conda.sh -#ENV PATH /opt/conda/bin:$PATH +ADD ./common/install_conda_docker.sh install_conda.sh +RUN bash ./install_conda.sh && rm install_conda.sh +ENV PATH /opt/conda/bin:$PATH # Ensure the expected devtoolset is used ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH From 01ac915aa837b9801922aeaaaad470158109e495 Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:53:52 +0530 Subject: [PATCH 3/6] Update install_conda_docker.sh --- common/install_conda_docker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/install_conda_docker.sh b/common/install_conda_docker.sh index 7020bd525..b5e1d16f7 100644 --- a/common/install_conda_docker.sh +++ b/common/install_conda_docker.sh @@ -12,12 +12,12 @@ rm $(basename "$MINICONDA_URL") export PATH=/opt/conda/bin:$PATH # First specifically install Python 3.11 which is compatible with conda 23.5.2 -conda install -y python=3.11 +#conda install -y python=3.11 # Pin conda to 23.5.2 as it's the last one compatible with openssl-1.1.1 -conda install -y conda=23.5.2 conda-build anaconda-client git ninja +#conda install -y conda=23.5.2 conda-build anaconda-client git ninja # The cmake version here needs to match with the minimum version of cmake # supported by PyTorch (3.18). There is only 3.18.2 on anaconda -/opt/conda/bin/pip3 install cmake==3.18.2 -conda remove -y --force patchelf +#/opt/conda/bin/pip3 install cmake==3.18.2 +#conda remove -y --force patchelf From 5eb7f3f0525f670f1ce899246c1c16b3980dc4b0 Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:26:58 +0530 Subject: [PATCH 4/6] Update install_conda_docker.sh --- common/install_conda_docker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/install_conda_docker.sh b/common/install_conda_docker.sh index b5e1d16f7..7020bd525 100644 --- a/common/install_conda_docker.sh +++ b/common/install_conda_docker.sh @@ -12,12 +12,12 @@ rm $(basename "$MINICONDA_URL") export PATH=/opt/conda/bin:$PATH # First specifically install Python 3.11 which is compatible with conda 23.5.2 -#conda install -y python=3.11 +conda install -y python=3.11 # Pin conda to 23.5.2 as it's the last one compatible with openssl-1.1.1 -#conda install -y conda=23.5.2 conda-build anaconda-client git ninja +conda install -y conda=23.5.2 conda-build anaconda-client git ninja # The cmake version here needs to match with the minimum version of cmake # supported by PyTorch (3.18). There is only 3.18.2 on anaconda -#/opt/conda/bin/pip3 install cmake==3.18.2 -#conda remove -y --force patchelf +/opt/conda/bin/pip3 install cmake==3.18.2 +conda remove -y --force patchelf From 32bb5856fea42c3c953dd9ee8c987d2dbf6fb3ae Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:27:57 +0530 Subject: [PATCH 5/6] Update Dockerfile_2_28 --- manywheel/Dockerfile_2_28 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index f1a70d101..804d047aa 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -122,9 +122,9 @@ FROM common as cpu_final ARG BASE_CUDA_VERSION=11.8 ARG DEVTOOLSET_VERSION=13 # Install Anaconda -ADD ./common/install_conda_docker.sh install_conda.sh -RUN bash ./install_conda.sh && rm install_conda.sh -ENV PATH /opt/conda/bin:$PATH +#ADD ./common/install_conda_docker.sh install_conda.sh +#RUN bash ./install_conda.sh && rm install_conda.sh +#ENV PATH /opt/conda/bin:$PATH # Ensure the expected devtoolset is used ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH From 3316b56667dbf3ec44873a13d896e9c94271d94c Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:34:04 +0530 Subject: [PATCH 6/6] Update Dockerfile_2_28 --- manywheel/Dockerfile_2_28 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index 804d047aa..5e2babe49 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -122,9 +122,9 @@ FROM common as cpu_final ARG BASE_CUDA_VERSION=11.8 ARG DEVTOOLSET_VERSION=13 # Install Anaconda -#ADD ./common/install_conda_docker.sh install_conda.sh -#RUN bash ./install_conda.sh && rm install_conda.sh -#ENV PATH /opt/conda/bin:$PATH +# ADD ./common/install_conda_docker.sh install_conda.sh +# RUN bash ./install_conda.sh && rm install_conda.sh +# ENV PATH /opt/conda/bin:$PATH # Ensure the expected devtoolset is used ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH