Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/container-runtime/running-workloads.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ Podman

podman run --rm --device amd.com/gpu=all rocm/rocm-terminal rocm-smi

.. tip::

Starting with Podman **6.0.0**, you can also use ``--gpus <entry>`` for AMD GPUs with CDI. ``<entry>`` can be ``all`` to request all GPUs.

.. code-block:: bash

podman run --rm --gpus all rocm/rocm-terminal rocm-smi

.. note::

To access the GPU inside the container, the process must run under the video and render groups. When running in rootless mode, ensure the user starting the Podman container is a member of these groups on the host, and use the ``--group-add keep-groups`` flag to pass these supplementary groups to the container process.
Expand Down
Loading