From 6fb0503b013aa33c3af2cec28e949b82b87ace53 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Sat, 10 Feb 2024 16:17:01 +0100 Subject: [PATCH] feat: amdgpu and rocm installation on linux --- knowledge base/amdgpu.md | 87 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 knowledge base/amdgpu.md diff --git a/knowledge base/amdgpu.md b/knowledge base/amdgpu.md new file mode 100644 index 0000000..7cd8ab3 --- /dev/null +++ b/knowledge base/amdgpu.md @@ -0,0 +1,87 @@ +# AMDGPU + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + 1. [Sources](#sources) + +## TL;DR + +
+ Requirements + +[Supported distributions] + +
+ +
+ Installation +
+ OpenSUSE Leap, SUSE Linux Enterprise + +See [Native installation on SLE]. + +```sh +sudo tee '/etc/zypp/repos.d/amdgpu.repo' < +
+ +
+ Uninstallation +
+ OpenSUSE Leap, SUSE Linux Enterprise + +See [Native installation on SLE]. + +```sh +sudo zypper remove 'rocm-core' +sudo zypper remove --clean-deps 'amdgpu-dkms' +sudo zypper removerepo 'ROCm-6.0.2' +sudo zypper removerepo 'amdgpu' +sudo zypper clean --all +sudo reboot +``` + +
+
+ +## Further readings + +### Sources + +- [Supported distributions] +- [Native installation on SLE] +- [Components of ROCm programming models] + + + + + + + +[components of rocm programming models]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/native-install/package-manager-integration.html#components-of-rocm-programming-models +[native installation on sle]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/native-install/sle.html +[supported distributions]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/system-requirements.html#supported-distributions + +