From 5ad4d86ec4496abe2e98e71ffa7585f99ed7f4ae Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Wed, 1 Jul 2026 20:16:57 +0000 Subject: [PATCH] fix(hipblas): correct amdgpu.ids source package name in comment Verified against the real rocm/dev-ubuntu-24.04:7.2.1 image with hipblas-dev/hipblaslt-dev/rocblas-dev installed: /usr/share/libdrm/amdgpu.ids is owned by libdrm-common, not libdrm-amdgpu1 as the comment said. Signed-off-by: Ettore Di Giacinto --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6bd7fb75..0bf768a43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -176,7 +176,7 @@ RUN if [ "${BUILD_TYPE}" = "hipblas" ]; then \ # if AMD's full amdgpu graphics/DKMS stack is installed. This compute-only image # doesn't have it, so hipblas/rocBLAS log "No such file or directory" on every # model load and can fail to identify the GPU. Point it at the equivalent file -# Ubuntu's libdrm-amdgpu1 already ships. +# Ubuntu's libdrm-common package already ships. RUN if [ "${BUILD_TYPE}" = "hipblas" ] && [ -f /usr/share/libdrm/amdgpu.ids ] && [ ! -e /opt/amdgpu/share/libdrm/amdgpu.ids ]; then \ mkdir -p /opt/amdgpu/share/libdrm && \ ln -s /usr/share/libdrm/amdgpu.ids /opt/amdgpu/share/libdrm/amdgpu.ids \