Installation#

AMD System Management Interface (AMD SMI) library#

The AMD System Management Interface Library (AMD SMI library) is a C library for Linux that provides a user space interface for applications to monitor and control AMD devices.

This project is a successor to rocm_smi_lib.

Supported platforms#

In its initial release, the AMD SMI library supports Linux bare metal and Linux virtual machine guest for AMD GPUs. In a future release, the library will extend to support AMD EPYC™ CPUs.

The AMD SMI library can run on AMD ROCm-supported platforms. Refer to System requirements - Linux for more information.

To run the AMD SMI library, the amdgpu driver and the hsmp driver must be installed. Optionally, libdrm can be installed to query firmware information and hardware IPs.

CLI tool and libraries installation#

Requirements#

  • Python 3.6.8+ 64-bit

  • amdgpu driver must be loaded for amdsmi_init() to pass

Installation steps#

  1. Install amdgpu using ROCm.

  2. Install amdgpu driver. See the following example. Note that your release and link may differ. The amdgpu-install –usecase=rocm triggers both the amdgpu driver update and AMD SMI packages to be installed on your device.

sudo apt update

wget https://repo.radeon.com/amdgpu-install/6.0.2/ubuntu/jammy/amdgpu-install_6.0.60002-1_all.deb

sudo apt install ./amdgpu-install_6.0.60002-1_all.deb

sudo amdgpu-install --usecase=rocm

amd-smi --help
  1. Install an example for Ubuntu 22.04 (without ROCm).

apt install amd-smi-lib

# if installed with rocm ignore the export

export PATH="${PATH:+${PATH}:}~/opt/rocm/bin"

amd-smi --help

Optional autocompletion#

The amd-smi cli application supports autocompletion. The package should attempt to install it, if argcomplete is not installed, you can enable it by using the following commands:

python3 -m pip install argcomplete

activate-global-python-argcomplete --user

# restart shell to enable

Manual/Multiple ROCm instance Python library install#

In the event there are multiple ROCm installations and pyenv is not being used to use the correct amdsmi version, you must uninstall previous versions of AMD SMI and install the latest version you want directly from your ROCm instance.

Python library install example for Ubuntu 22.04#

  1. Remove any existing AMD SMI installation:

python3 -m pip list | grep amd

python3 -m pip uninstall amdsmi
  1. Install Python library from your target ROCm instance:

apt install amd-smi-lib

cd /opt/rocm/share/amd_smi

python3 -m pip install --upgrade pip

python3 -m pip install --user

Now you have the AMD SMI Python library in your Python path:

~$ python3

Python 3.8.10 (default, May 26 2023, 14:05:08)

[GCC 9.4.0] on linux
  1. Type “help”, “copyright”, “credits” or “license” for more information

import amdsmi

Sphinx documentation#

Run the following commands to build the documentation locally:

cd docs

python3 -m pip install -r sphinx/requirements.txt

python3 -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html

The output is available in docs/_build/html.

For additional details, see Contribute to ROCm documentation.