From 4b58a1d915bbca315203b8ed2296604b7781f8a6 Mon Sep 17 00:00:00 2001 From: Kyle Roarty Date: Fri, 24 Jul 2020 13:41:37 -0500 Subject: [PATCH] util: Update HIP patch used in gcn Dockerfile The new HIP patch includes a change that allows calls to hipDeviceSynchronize() (and other functions that call locked_wait()) to run without crashing Change-Id: Iae6656c19168de696b0f94503e703be67f0baa09 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/31794 Reviewed-by: Matt Sinclair Maintainer: Jason Lowe-Power Tested-by: kokoro --- util/dockerfiles/gcn-gpu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/dockerfiles/gcn-gpu/Dockerfile b/util/dockerfiles/gcn-gpu/Dockerfile index ca9835d90..475918f51 100644 --- a/util/dockerfiles/gcn-gpu/Dockerfile +++ b/util/dockerfiles/gcn-gpu/Dockerfile @@ -60,11 +60,11 @@ RUN git clone --single-branch https://github.com/ROCm-Developer-Tools/HIP/ && \ # Apply patches to various repos RUN mkdir -p /patch && cd /patch && \ wget ${gem5_dist}/rocm_patches/hipBLAS.patch && \ - wget ${gem5_dist}/rocm_patches/hip.patch && \ + wget ${gem5_dist}/rocm_patches/hip.patch_v2 && \ wget ${gem5_dist}/rocm_patches/miopen-conv.patch && \ wget ${gem5_dist}/rocm_patches/rocBLAS.patch -RUN git -C /HIP/ checkout 0e3d824e && git -C /HIP/ apply /patch/hip.patch && \ +RUN git -C /HIP/ checkout 0e3d824e && git -C /HIP/ apply /patch/hip.patch_v2 && \ git -C /hipBLAS/ checkout ee57787e && git -C /hipBLAS/ apply /patch/hipBLAS.patch && \ git -C /rocBLAS/ checkout cbff4b4e && git -C /rocBLAS/ apply /patch/rocBLAS.patch && \ git -C /MIOpenGEMM/ checkout 9547fb9e && \ -- 2.30.2