Skip to content
Closed
Show file tree
Hide file tree
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: 4 additions & 4 deletions docs/compatibility/compatibility-matrix.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
Compatibility matrix
**************************************************************************************

The AMD GPU Driver (amdgpu) 30.30.0 is compatible with ROCm 7.2.x, 7.1.x, 7.0.x, 6.4.x, and 6.3.x. For more information, see `AMD GPU Driver (amdgpu) support matrix
<https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/user-kernel-space-compat-matrix.html>`__.
The AMD GPU Driver (amdgpu) 31.10.0 is compatible with ROCm 7.11.0. For more information, see `ROCm 7.11.0 compatibility matrix
<https://rocm.docs.amd.com/en/7.11.0-preview/compatibility/compatibility-matrix.html>`__.

======================================
Operating system and kernel version
======================================

See `Supported operating systems <https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/system-requirements.html#supported-operating-systems>`_ for ROCm supported operating systems and their kernel versions.
See `Operating system support <https://rocm.docs.amd.com/en/7.11.0-preview/about/release-notes.html#operating-system-support>`_ for ROCm supported operating systems and their kernel versions.

=============
GPU support
=============

See `Supported GPUs <https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/system-requirements.html#supported-gpus>`_ for the list of supported AMD Instinct™, Radeon™ PRO, and Radeon GPUs.
See `Hardware support <https://rocm.docs.amd.com/en/7.11.0-preview/about/release-notes.html#hardware-support>`_ for the list of supported AMD Instinct™, Radeon™ PRO, Radeon, and Ryzen™ AI GPUs.
22 changes: 12 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@
html_context["READTHEDOCS"] = True
project = "AMD GPU Driver (amdgpu)"

version = "30.30.0"
rocm_version = '7.2'
rocm_directory_version = '7.2.0' # in 6.0 rocm was located in /opt/rocm-6.0.0
amdgpu_version = '30.30' # directory in https://repo.radeon.com/rocm/apt/ and https://repo.radeon.com/amdgpu-install/
amdgpu_url_version = '30.30'
version = "31.10.0"
rocm_version = '7.11'
rocm_directory_version = '7.11.0' # in 6.0 rocm was located in /opt/rocm-6.0.0
amdgpu_version = '31.10' # directory in https://repo.radeon.com/rocm/apt/ and https://repo.radeon.com/amdgpu-install/
amdgpu_url_version = '31.10'
release = version
html_title = f"AMD GPU Driver (amdgpu) {version}"
author = "Advanced Micro Devices, Inc."
copyright = "Copyright (c) 2025 Advanced Micro Devices, Inc. All rights reserved."
copyright = "Copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved."

# Supported linux version numbers
ubuntu_version_numbers = [('24.04', 'noble'), ('22.04', 'jammy')]
debian_version_numbers = [('13', 'noble'), ('12', 'jammy')]
rhel_release_version_numbers = ['10', '9', '8']
rhel_version_numbers = ['10.1', '10.0', '9.7', '9.6', '9.4', '8.10']
sles_version_numbers = ['15.7']
sles_version_numbers = ['16.0', '15.7']
ol_release_version_numbers = ['10', '9', '8']
ol_version_numbers = ['10.0', '9.6', '8.10']
rl_version_numbers = ['9.6']
ol_version_numbers = ['10.1', '9.6', '8.10']
rl_version_numbers = ['9.7']

html_context = {
"ubuntu_version_numbers" : ubuntu_version_numbers,
Expand All @@ -43,6 +43,7 @@
html_theme = "rocm_docs_theme"
html_theme_options = {
"flavor": "amdgpu",
"announcement": f"AMD GPU Driver {version} is a technology preview intended for use only with <a id='rocm-banner' href='https://rocm.docs.amd.com/en/7.11.0-preview/index.html'>AMD ROCm 7.11.0 technology preview</a>.",
"link_main_doc": True,
# Add any additional theme options here
}
Expand All @@ -60,7 +61,8 @@
# Add the following replacements to every RST file.
rst_prolog = f"""
.. |rocm_version| replace:: {rocm_version}
.. |version| replace:: {version}
.. |amdgpu_version| replace:: {amdgpu_version}
.. |amdgpu_url_version| replace:: {amdgpu_url_version}
.. |rocm_directory_version| replace:: {rocm_directory_version}
"""
"""
18 changes: 7 additions & 11 deletions docs/documentation/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
# AMD GPU Driver (amdgpu) 30.30.0 release notes
# AMD GPU Driver (amdgpu) 31.10.0 release notes

The release notes provide release highlights and resolved issues since the previous AMD GPU Driver release (30.20.1).
The release notes provide release highlights and resolved issues since the previous AMD GPU Driver release (30.30.0).

## Release highlights

The following are notable new features and improvements in AMD GPU Driver 30.30.0.
This is the first AMD GPU driver released alongside [TheRock](https://github.com/ROCm/TheRock), the new open build and release system. It also includes general stability and robustness improvements to the VCN (Video Core Next) software through ongoing mainline integration.

The following are notable new features and improvements in AMD GPU Driver 31.10.0.

### Operating system and hardware support changes

This release doesn't introduce operating system or hardware support changes.
This release introduces support for Ubuntu 24.04.4 HWE (Hardware Enablement Stack).

For compatibility between AMD GPU Driver, ROCm, GPUs, and operating systems, see the [Compatibility matrix](../compatibility/compatibility-matrix.rst).

## Resolved issues

The following previously known issues have been resolved in this release:

- Resolved an issue where several GDB unit tests were timing out because the test application sent a `kill` command to the kernel while it was still shutting down VM entities, and the VM release work queue was active.

- Resolved an issue where `MEM_USAGE` showed values in exabytes during KFD tests.

- Resolved errors that occurred during the execution of the `mem_leak_hip_samples` test.
Addressed a potential VCN5 vulnerability by using DMA copy instead of software copy.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ Register kernel-mode driver
sudo tee /etc/yum.repos.d/amdgpu.repo <<EOF
[amdgpu]
name=amdgpu
{% if os_major == '9' -%}
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_version }}/main/x86_64/
{%- else -%}
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_major }}/main/x86_64/
{%- endif %}
enabled=1
priority=50
gpgcheck=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ Register kernel-mode driver
sudo tee /etc/yum.repos.d/amdgpu.repo <<EOF
[amdgpu]
name=amdgpu
{% if os_major == '9' -%}
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_version }}/main/x86_64/
{%- else -%}
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_major }}/main/x86_64/
{%- endif %}
enabled=1
priority=50
gpgcheck=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Register kernel-mode driver
sudo tee /etc/yum.repos.d/amdgpu.repo <<EOF
[amdgpu]
name=amdgpu
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_version }}/main/x86_64/
baseurl=https://repo.radeon.com/amdgpu/|amdgpu_url_version|/el/{{ os_major }}/main/x86_64/
enabled=1
priority=50
gpgcheck=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,20 @@ Additional package repositories

.. tab-item:: SLES {{ os_version }}

{% if os_version == '16.0' -%}

There are no additional package repositories needed for SLES 16.0.

{%- else -%}

.. code-block:: shell

sudo SUSEConnect -p sle-module-desktop-applications/{{ os_version }}/x86_64
sudo SUSEConnect -p sle-module-development-tools/{{ os_version }}/x86_64
sudo SUSEConnect -p PackageHub/{{ os_version }}/x86_64
sudo zypper install zypper

{%- endif %}

{% endfor %}

Expand Down
52 changes: 26 additions & 26 deletions docs/install/detailed-install/post-install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

.. code-block:: bash

amdgpu/6.16.13-2278356.24.04, 6.14.0-37-generic, x86_64: installed
amdgpu/6.18.4-2286447.24.04, 6.17.0-14-generic, x86_64: installed

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``24.04``: distro version
- ``6.14.0-37-generic``: kernel version of dkms build
- ``6.17.0-14-generic``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver

.. tab-item:: Debian
Expand All @@ -44,11 +44,11 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

.. code-block:: bash

amdgpu/6.16.13-2278356.24.04, 6.12.57+deb13-amd64, x86_64: installed (Original modules exist)
amdgpu/6.18.4-2286447.24.04, 6.12.57+deb13-amd64, x86_64: installed (Original modules exist)

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``6.12.57+deb13-amd64``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver

Expand All @@ -62,11 +62,11 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

.. code-block:: bash

amdgpu/6.16.13-2278356.el10, 6.12.0-124.8.1.el10_1.x86_64: installed (Original modules exist)
amdgpu/6.18.4-2286447.el10, 6.12.0-124.8.1.el10_1.x86_64, x86_64: installed (Original modules exist)

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``el10``: distro version
- ``6.12.0-124.8.1.el10_1.x86_64``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver
Expand All @@ -77,17 +77,17 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

sudo dkms status

**Sample output for OL 10.0:**
**Sample output for OL 10.1:**

.. code-block:: bash

amdgpu/6.16.13-2278356.el10, 6.12.0-106.55.4.2.el10uek.x86_64, x86_64: installed (Original modules exist)
amdgpu/6.18.4-2286447.el10, 6.12.0-105.51.5.el10uek.x86_64, x86_64: installed (Original modules exist)

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``el10``: distro version
- ``6.12.0-106.55.4.2.el10uek.x86_64``: kernel version of dkms build
- ``6.12.0-105.51.5.el10uek.x86_64``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver

.. tab-item:: Rocky
Expand All @@ -96,17 +96,17 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

sudo dkms status

**Sample output for Rocky 9.6:**
**Sample output for Rocky 9.7:**

.. code-block:: bash

amdgpu/6.16.13-2278356.el9, 5.14.0-611.20.1.el9_7.x86_64, x86_64: installed
amdgpu/6.18.4-2286447.el9, 5.14.0-611.5.1.el9_7.x86_64, x86_64: installed (Original modules exist)

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``el9``: distro version
- ``5.14.0-611.20.1.el9_7.x86_64``: kernel version of dkms build
- ``5.14.0-611.5.1.el9_7.x86_64``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver

.. tab-item:: SLES
Expand All @@ -115,16 +115,16 @@ Use the following command to check the installation of the AMD GPU Driver (amdgp

sudo dkms status

**Sample output for SLES 15.7:**
**Sample output for SLES 16.0:**

.. code-block:: bash

amdgpu/6.16.13-2278356, 6.4.0-150700.53.25-default, x86_64: installed (original_module exists)
amdgpu/6.18.4-2286447, 6.12.0-160000.9-default, x86_64: installed (Original modules exist)

- ``amdgpu``: dkms module name
- ``6.16.13``: amdgpu driver version
- ``2278356``: amdgpu driver build number
- ``6.4.0-150700.53.25-default``: kernel version of dkms build
- ``6.18.4``: amdgpu driver version
- ``2286447``: amdgpu driver build number
- ``6.12.0-160000.9-default``: kernel version of dkms build
- ``installed``: dkms status; ``installed`` indicates successful installation of the amdgpu driver

.. _other_resources:
Expand All @@ -136,4 +136,4 @@ The AMD ROCm platform provides a comprehensive set of user space software compon

- `ROCm components <https://rocm.docs.amd.com/en/latest/what-is-rocm.html>`_
- `ROCm installation guide (Linux) <https://rocm.docs.amd.com/projects/install-on-linux/en/latest/>`_
- `HIP documentation <https://rocm.docs.amd.com/projects/HIP/en/latest/index.html>`_
- `HIP documentation <https://rocm.docs.amd.com/projects/HIP/en/latest/index.html>`_
1 change: 1 addition & 0 deletions docs/release/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ AMD GPU Driver (amdgpu) release history
:header: "Version","Release date"
:widths: 10, 30

"`31.10.0 <https://instinct.docs.amd.com/projects/amdgpu-docs/en/docs-31.10.0/>`_", "February 11, 2026"
"`30.30.0 <https://instinct.docs.amd.com/projects/amdgpu-docs/en/docs-30.30.0/>`_", "January 21, 2026"
"`30.20.1 <https://instinct.docs.amd.com/projects/amdgpu-docs/en/docs-30.20.1/>`_", "November 26, 2025"
"`30.20.0 <https://instinct.docs.amd.com/projects/amdgpu-docs/en/docs-30.20.0/>`_", "October 30, 2025"
Expand Down