From e36bd3e4ecae229357054aeb065abd4ce2f9c799 Mon Sep 17 00:00:00 2001 From: Donato Capitella Date: Wed, 12 Nov 2025 07:55:03 +0000 Subject: [PATCH] trying another fix for rocm-6.4.4-rocwmma --- toolboxes/Dockerfile.rocm-6.4.4-rocwmma | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolboxes/Dockerfile.rocm-6.4.4-rocwmma b/toolboxes/Dockerfile.rocm-6.4.4-rocwmma index 54628ef..a29b034 100644 --- a/toolboxes/Dockerfile.rocm-6.4.4-rocwmma +++ b/toolboxes/Dockerfile.rocm-6.4.4-rocwmma @@ -49,7 +49,7 @@ RUN chmod +x /opt/apply-rocwmma-fix.sh && /opt/apply-rocwmma-fix.sh /opt/llama.c RUN git clean -xdf \ && git pull \ && git submodule update --recursive \ - && bash -lc 'f=/opt/llama.cpp/ggml/src/ggml-cuda/mmid.cu; \ + && bash -lc 'f=/opt/llama.cpp/ggml/src/ggml-cuda/mma.cuh; \ grep -q "vendors/hip.h" "$f" || sed -i '\''1i #include "vendors/hip.h"'\'' "$f"' \ && cmake -S . -B build \ -DGGML_HIP=ON \ @@ -65,6 +65,7 @@ RUN git clean -xdf \ && cmake --install build --config Release + # libs RUN find /opt/llama.cpp/build -type f -name 'lib*.so*' -exec cp {} /usr/lib64/ \; \ && ldconfig