You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
405 B
14 lines
405 B
#!/bin/bash
|
|
rm amdgpu-install_5.5.50500-1_all.deb
|
|
wget https://repo.radeon.com/amdgpu-install/5.5/ubuntu/$(lsb_release -cs)/amdgpu-install_5.5.50500-1_all.deb
|
|
sudo dpkg -i amdgpu-install_5.5.50500-1_all.deb
|
|
sudo apt-get update
|
|
|
|
# kernel driver
|
|
sudo apt-get install amdgpu-dkms
|
|
|
|
# for opencl
|
|
sudo apt-get install rocm-opencl-runtime
|
|
|
|
# for HIP
|
|
sudo apt-get install hip-runtime-amd rocm-device-libs hip-dev
|
|
|