fix: tensile and blender dep

This commit is contained in:
2024-09-13 09:21:57 -07:00
parent 4c55f8ec71
commit 5129854bb1
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -82,7 +82,10 @@ RUN git clone -b ${ROCBLAS_BRANCH} https://github.com/ROCmSoftwarePlatform/rocBL
WORKDIR /root/rocBLAS WORKDIR /root/rocBLAS
RUN rm -rf library/src/blas3/Tensile/Logic/asm_full/r9nano/ RUN rm -rf library/src/blas3/Tensile/Logic/asm_full/r9nano/
RUN sed -i -e 's/rmake.py --install/rmake.py -a="${ROCBLAS_ARCH}" --install/g' install.sh RUN sed -i -e 's/rmake.py --install/rmake.py -a="${ROCBLAS_ARCH}" --install/g' install.sh
RUN ./install.sh -a ${ROCBLAS_ARCH} -d --cmake_install
# > https://github.com/ROCm/Tensile/pull/1897
RUN ./install.sh -a ${ROCBLAS_ARCH} -d --cmake_install --merge-architectures --no-lazy-library-loading
WORKDIR /root/rocBLAS/build/release WORKDIR /root/rocBLAS/build/release
COPY fix-rocblas.sh . COPY fix-rocblas.sh .
RUN <<EOF RUN <<EOF
+2 -1
View File
@@ -17,7 +17,8 @@ RUN git clone --depth 1 https://projects.blender.org/blender/blender.git -b ${BL
mkdir blender/build mkdir blender/build
WORKDIR /home/rocm/blender WORKDIR /home/rocm/blender
RUN ./build_files/build_environment/install_linux_packages.py RUN sudo ./build_files/build_environment/install_deps.sh || true
RUN ./build_files/build_environment/install_linux_packages.py || true
RUN ./build_files/utils/make_update.py --use-linux-libraries RUN ./build_files/utils/make_update.py --use-linux-libraries
RUN sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/* RUN sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/*