From 392298f111e298070459e0ec0ee809286c38645d Mon Sep 17 00:00:00 2001 From: Aryan Date: Tue, 19 Sep 2023 10:33:24 -0400 Subject: [PATCH] update readme fand dockers fr adding oinstallation ption to exclude 32 bit pgraphics pckage, add update dockers to 5.7 [ROCm/rocdecode commit: 0d642885599b10345f8fb7e43aa339822fa564a7] --- projects/rocdecode/README.md | 2 +- .../rocdecode/docker/vcnDECODE-on-ubuntu20.dockerfile | 8 +++----- .../rocdecode/docker/vcnDECODE-on-ubuntu22.dockerfile | 8 +++----- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/projects/rocdecode/README.md b/projects/rocdecode/README.md index ff6f06e472..c0b557e972 100644 --- a/projects/rocdecode/README.md +++ b/projects/rocdecode/README.md @@ -7,7 +7,7 @@ rocDecode is a high performance video decode SDK for AMD hardware * Linux distribution + **Ubuntu** - `20.04` / `22.04` * Install [ROCm5.5 or later](https://docs.amd.com) - + **Note** - both graphics and rocm use-cases must be installed (i.e., sudo amdgpu-install --usecase=graphics,rocm). + + **Note** - both graphics and rocm use-cases must be installed (i.e., sudo amdgpu-install --usecase=graphics,rocm --no-32). * CMake 3.0 or later * libva-dev 2.7 or later * [FFMPEG n4.4.2 or later](https://github.com/FFmpeg/FFmpeg/releases/tag/n4.4.2) diff --git a/projects/rocdecode/docker/vcnDECODE-on-ubuntu20.dockerfile b/projects/rocdecode/docker/vcnDECODE-on-ubuntu20.dockerfile index 37955f80bd..9be93d5469 100644 --- a/projects/rocdecode/docker/vcnDECODE-on-ubuntu20.dockerfile +++ b/projects/rocdecode/docker/vcnDECODE-on-ubuntu20.dockerfile @@ -5,13 +5,11 @@ RUN apt-get update -y #RUN apt-get dist-upgrade -y RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gcc g++ cmake pkg-config git apt-utils sudo vainfo dialog -RUN DEBIAN_FRONTEND=noninteractive dpkg --add-architecture i386 - # install ROCm RUN DEBIAN_FRONTEND=noninteractive apt-get -y install initramfs-tools libnuma-dev wget keyboard-configuration && \ - wget https://repo.radeon.com/amdgpu-install/5.5/ubuntu/focal/amdgpu-install_5.5.50500-1_all.deb && \ - sudo apt-get install ./amdgpu-install_5.5.50500-1_all.deb && \ - sudo amdgpu-install -y --usecase=graphics,rocm + wget https://repo.radeon.com/amdgpu-install/5.7/ubuntu/focal/amdgpu-install_5.7.50700-1_all.deb && \ + sudo apt-get install ./amdgpu-install_5.7.50700-1_all.deb && \ + sudo amdgpu-install -y --usecase=graphics,rocm --no-32 # install FFMPEG, and other dependencies RUN DEBIAN_FRONTEND=noninteractive apt-get -y install autoconf automake build-essential cmake git-core libass-dev libfreetype6-dev libsdl2-dev libtool libva-dev \ diff --git a/projects/rocdecode/docker/vcnDECODE-on-ubuntu22.dockerfile b/projects/rocdecode/docker/vcnDECODE-on-ubuntu22.dockerfile index 4b7404c0a9..d3c7fb898c 100644 --- a/projects/rocdecode/docker/vcnDECODE-on-ubuntu22.dockerfile +++ b/projects/rocdecode/docker/vcnDECODE-on-ubuntu22.dockerfile @@ -5,13 +5,11 @@ RUN apt-get update -y #RUN apt-get dist-upgrade -y RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gcc g++ cmake pkg-config git apt-utils sudo vainfo dialog libstdc++-12-dev -RUN DEBIAN_FRONTEND=noninteractive dpkg --add-architecture i386 - # install ROCm RUN DEBIAN_FRONTEND=noninteractive apt-get -y install initramfs-tools libnuma-dev wget keyboard-configuration && \ - wget https://repo.radeon.com/amdgpu-install/5.5/ubuntu/jammy/amdgpu-install_5.5.50500-1_all.deb && \ - sudo apt-get install ./amdgpu-install_5.5.50500-1_all.deb && \ - sudo amdgpu-install -y --usecase=graphics,rocm + wget https://repo.radeon.com/amdgpu-install/5.7/ubuntu/jammy/amdgpu-install_5.7.50700-1_all.deb && \ + sudo apt-get install ./amdgpu-install_5.7.50700-1_all.deb && \ + sudo amdgpu-install -y --usecase=graphics,rocm --no-32 # install FFMPEG, and other dependencies RUN DEBIAN_FRONTEND=noninteractive apt-get -y install autoconf automake build-essential cmake git-core libass-dev libfreetype6-dev libsdl2-dev libtool libva-dev \