2021-02-11 08:05:34 -06:00
|
|
|
---
|
|
|
|
# Install OpenCL drivers.
|
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
## Step 0/3: Package Dependencies ##
|
2021-02-11 18:08:57 -06:00
|
|
|
- name: AMDGPU | Install Dependencies
|
|
|
|
package:
|
|
|
|
name:
|
|
|
|
- dkms
|
|
|
|
- mesa-common-dev
|
|
|
|
state: present
|
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
|
|
|
|
## Step 1/3: Get Correct Kernel ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Step 2/3: Remove Incorrect Kernels ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Step 3/3: Install AMD PRO Driver ##
|
2021-02-11 12:12:52 -06:00
|
|
|
- name: AMDGPU | Check If Installed
|
2021-02-11 11:17:22 -06:00
|
|
|
shell: 'which amdgpu-pro-uninstall'
|
2021-02-11 19:56:53 -06:00
|
|
|
register: amdgpu_install
|
2021-02-11 12:47:00 -06:00
|
|
|
ignore_errors: yes
|
2021-02-11 11:17:22 -06:00
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
- name: AMDGPU | Debug Installation
|
2021-02-11 12:12:52 -06:00
|
|
|
debug:
|
2021-02-11 19:56:53 -06:00
|
|
|
var: amdgpu_install
|
2021-02-11 12:12:52 -06:00
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
- name: AMDGPU | Create Downloads Folder
|
2021-02-11 13:03:48 -06:00
|
|
|
shell: 'mkdir -p /root/Downloads'
|
2021-02-11 19:56:53 -06:00
|
|
|
when: amdgpu_install.failed
|
2021-02-11 08:05:34 -06:00
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
- name: AMDGPU | Download Driver
|
2021-02-11 13:03:48 -06:00
|
|
|
shell: 'scp ling@leet:InstallFiles/Drivers/amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz /root/Downloads/'
|
2021-02-11 19:56:53 -06:00
|
|
|
when: amdgpu_install.failed
|
2021-02-11 08:05:34 -06:00
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
- name: AMDGPU | Extract Tarball
|
2021-02-11 13:03:48 -06:00
|
|
|
shell: 'cd /root/Downloads; tar -xvf amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz'
|
2021-02-11 19:56:53 -06:00
|
|
|
when: amdgpu_install.failed
|
2021-02-11 08:05:34 -06:00
|
|
|
|
2021-02-11 19:56:53 -06:00
|
|
|
- name: AMDGPU | Install Pro Driver
|
2021-02-11 13:03:48 -06:00
|
|
|
shell: 'cd /root/Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; ./amdgpu-pro-install -y --opencl=pal,legacy'
|
2021-02-11 19:56:53 -06:00
|
|
|
when: amdgpu_install.failed
|