From 25a142dc696b75402d905eb452c3e67eb49c67ee Mon Sep 17 00:00:00 2001 From: anusha GodavarthySurya Date: Thu, 29 Jul 2021 00:02:45 -0700 Subject: [PATCH] SWDEV-287869 - [HIP] Package rename Change-Id: I8690c02a8c210c11ad9f7037314ad8cc2124dfc9 --- INSTALL.md | 4 ++-- docker/dockerfile-hip-ubuntu-16.04 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 0743ee1bdb..7327a7611f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -58,9 +58,9 @@ sudo make install HIP-nvcc is the compiler for HIP program compilation on NVIDIA platform. * Add the ROCm package server to your system as per the OS-specific guide available [here](https://rocm.github.io/ROCmInstall.html#installing-from-amd-rocm-repositories). -* Install the "hip-nvcc" package. This will install CUDA SDK and the HIP porting layer. +* Install the "hip-runtime-nvidia" and "hip-devel" package. This will install CUDA SDK and the HIP porting layer. ``` -apt-get install hip-nvcc +apt-get install hip-runtime-nvidia hip-devel ``` * Default paths and environment variables: * By default HIP looks for CUDA SDK in /usr/local/cuda (can be overriden by setting CUDA_PATH env variable). diff --git a/docker/dockerfile-hip-ubuntu-16.04 b/docker/dockerfile-hip-ubuntu-16.04 index 9ae70225f0..8c833f7918 100644 --- a/docker/dockerfile-hip-ubuntu-16.04 +++ b/docker/dockerfile-hip-ubuntu-16.04 @@ -30,8 +30,8 @@ COPY *.deb /tmp/ # Install the debian package RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y curl \ && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --allow-unauthenticated -y \ - /tmp/hip-base-*.deb \ - /tmp/hip-hcc-*.deb \ + /tmp/hip-devel-*.deb \ + /tmp/hip-runtime-amd-*.deb \ /tmp/hip-doc-*.deb \ /tmp/hip-samples-* \ && rm -f /tmp/*.deb \