diff --git a/projects/hip/INSTALL.md b/projects/hip/INSTALL.md index 0743ee1bdb..7327a7611f 100644 --- a/projects/hip/INSTALL.md +++ b/projects/hip/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/projects/hip/docker/dockerfile-hip-ubuntu-16.04 b/projects/hip/docker/dockerfile-hip-ubuntu-16.04 index 9ae70225f0..8c833f7918 100644 --- a/projects/hip/docker/dockerfile-hip-ubuntu-16.04 +++ b/projects/hip/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 \