- Dec 29, 2005
- 6,314
- 2,240
- 136
Here's what I did to get my new Radeon VII going on Linux.
1) Clean install of Ubuntu 18.04.4 LTS. I tried to get the open source AMDGPU drivers on my existing installation on linux 19.3 (nvidia drivers) but I haven't succeeded yet. I'm making progress I think but time will tell if I'm successful.
1a) Install boinc and system updates
sudo apt install boinc-client boinc-manager
sudo usermod -a -G boinc $(whoami) <---adds user (you) to the boinc group
sudo apt update
sudo apt upgrade
sudo reboot
2) The clean install of Ubuntu 18.04.4 LTS automatically installs the AMGGPU opensource drivers but that alone will not support OpenCL apps. This is confirmed by installing boinc and sure enough, "no usable gpus detected" or something similar was reported in the event log. To install OpenCL drivers, download the latest AMDGPU-Pro driver package from https://www.amd.com/en/support. The driver file I downloaded was amdgpu-pro-19.50-967956-ubuntu-18.04.tar.xz at this url. https://www.amd.com/en/support/graphics ... adeon-vii.
3) Extract the archive.
$ cd ~/Downloads
$ tar -Jxvf amdgpu-pro-19.50-967956-ubuntu-18.04.tar.xz
4) Change directory and run the installer to install just the openCL support files.
$ cd ~/Downloads/amdgpu-pro-19.50-967956-ubuntu-18.04
Run:
sudo ./amdgpu-pro-install --opencl=legacy,pal --headless --no-dkms
5) reboot or restart the boinc-client service: sudo service boinc-client restart
6) check the boinc event log to see if your GPU was detected.
The only option app I could find to control voltage, clock speed, etc that supported the Radeon VII was amdgpu-utils whcih can be found here:
github.com
This was really tedious to install. Make sure you read the user guide in detail.
1) Clean install of Ubuntu 18.04.4 LTS. I tried to get the open source AMDGPU drivers on my existing installation on linux 19.3 (nvidia drivers) but I haven't succeeded yet. I'm making progress I think but time will tell if I'm successful.
1a) Install boinc and system updates
sudo apt install boinc-client boinc-manager
sudo usermod -a -G boinc $(whoami) <---adds user (you) to the boinc group
sudo apt update
sudo apt upgrade
sudo reboot
2) The clean install of Ubuntu 18.04.4 LTS automatically installs the AMGGPU opensource drivers but that alone will not support OpenCL apps. This is confirmed by installing boinc and sure enough, "no usable gpus detected" or something similar was reported in the event log. To install OpenCL drivers, download the latest AMDGPU-Pro driver package from https://www.amd.com/en/support. The driver file I downloaded was amdgpu-pro-19.50-967956-ubuntu-18.04.tar.xz at this url. https://www.amd.com/en/support/graphics ... adeon-vii.
3) Extract the archive.
$ cd ~/Downloads
$ tar -Jxvf amdgpu-pro-19.50-967956-ubuntu-18.04.tar.xz
4) Change directory and run the installer to install just the openCL support files.
$ cd ~/Downloads/amdgpu-pro-19.50-967956-ubuntu-18.04
Run:
sudo ./amdgpu-pro-install --opencl=legacy,pal --headless --no-dkms
5) reboot or restart the boinc-client service: sudo service boinc-client restart
6) check the boinc event log to see if your GPU was detected.
The only option app I could find to control voltage, clock speed, etc that supported the Radeon VII was amdgpu-utils whcih can be found here:
Ricks-Lab/amdgpu-utils
A set of utilities for monitoring and customizing GPU performance - Ricks-Lab/amdgpu-utils

Last edited: