35 lines
1.0 KiB
YAML
Raw Normal View History

---
# Install OpenCL drivers.
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Check If Installed
shell: 'which amdgpu-pro-uninstall'
register: amdgpu_installed
2021-02-11 12:47:00 -06:00
ignore_errors: yes
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Debug
debug:
var: amdgpu_installed
- name: AMDGPU | Folder
2021-02-11 13:03:48 -06:00
shell: 'mkdir -p /root/Downloads'
2021-02-11 12:49:22 -06:00
when: amdgpu_installed.failed
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Download
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 12:49:22 -06:00
when: amdgpu_installed.failed
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Extract
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 12:49:22 -06:00
when: amdgpu_installed.failed
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Install 1 - All
2021-02-11 13:03:48 -06:00
shell: 'cd /root/Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; ./amdgpu-install -y'
2021-02-11 12:49:22 -06:00
when: amdgpu_installed.failed
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Install 2 - Pro
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 12:49:22 -06:00
when: amdgpu_installed.failed
2021-02-11 12:12:52 -06:00
- name: AMDGPU | Delete
2021-02-11 13:03:48 -06:00
shell: 'rm -rf /root/Downloads/*'
2021-02-11 12:49:22 -06:00
when: amdgpu_installed.failed