18 lines
528 B
YAML
18 lines
528 B
YAML
|
---
|
||
|
# Install OpenCL drivers.
|
||
|
|
||
|
- name: Folder
|
||
|
shell: 'mkdir -p Downloads'
|
||
|
|
||
|
- name: Download
|
||
|
shell: 'scp ling@leet:InstallFiles/Drivers/amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz Downloads/'
|
||
|
|
||
|
- name: Extract
|
||
|
shell: 'cd Downloads; tar -xvf amdgpu-pro-20.45-1188099-ubuntu-20.04.tar.xz'
|
||
|
|
||
|
- name: Install 1 - All
|
||
|
shell: 'cd Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; amdgpu-install -y'
|
||
|
|
||
|
- name: Install 2 - Pro
|
||
|
shell: 'cd Downloads/amdgpu-pro-20.45-1188099-ubuntu-20.04; amdgpu-pro-install -y --opencl=pal,legacy'
|