Skip to content

Commit f82bdea

Browse files
committed
docs: update ROCm 7.13 host setup
1 parent e806b7c commit f82bdea

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The simplest way to deploy AUP Learning Cloud on a single machine in a developme
3636
- **Hardware**: AMD Ryzen™ AI Halo Device (e.g., AI Max+ 395, AI Max 390)
3737
- **Memory**: 32GB+ RAM (64GB recommended)
3838
- **Storage**: 500GB+ SSD
39-
- **OS**: Ubuntu 24.04.3 LTS
39+
- **OS**: Ubuntu 24.04.4 LTS
4040
- **Docker**: Install Docker and configure for non-root access
4141

4242
```bash
@@ -56,7 +56,7 @@ newgrp docker
5656
sudo apt install build-essential
5757
```
5858

59-
> **Kernel note**: The OEM kernel package follows AMD ROCm's Ryzen APU installation guidance for Ubuntu 24.04. See the [ROCm installation guide for Ryzen APUs](https://rocm.docs.amd.com/en/7.12.0/install/rocm.html?fam=ryzen&gpu=max-pro-395&os=ubuntu&os-version=24.04&i=pkgman) for details.
59+
> **Kernel note**: The OEM kernel package follows AMD ROCm's Ryzen APU installation guidance for Ubuntu 24.04. See the [ROCm 7.13.0 preview installation guide for Ryzen APUs](https://rocm.docs.amd.com/en/7.13.0-preview/install/rocm.html?fam=ryzen&w=compute&os=ubuntu&ubuntu-ver=24.04&i=pkgman&gpu=max-pro-395&gfx=gfx1151) for details.
6060
>
6161
> **Docker note**: See [Docker Post-installation Steps](https://docs.docker.com/engine/install/linux-postinstall/) and [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) for details.
6262

deploy/ansible/playbooks/pb-rocm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1818
# SOFTWARE.
1919

20-
- name: Install ROCm 7.1.0
20+
- name: Install AMD GPU driver for ROCm 7.13.0
2121
hosts: all
2222
become: yes
2323
roles:

deploy/ansible/roles/rocm/tasks/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,20 @@
3838

3939
- name: Download AMDGPU installer
4040
get_url:
41-
url: https://repo.radeon.com/amdgpu-install/7.1/ubuntu/noble/amdgpu-install_7.1.70100-1_all.deb
42-
dest: /tmp/amdgpu-install_7.1.70100-1_all.deb
41+
url: https://repo.radeon.com/amdgpu-install/31.30/ubuntu/noble/amdgpu-install_31.30.313000-1_all.deb
42+
dest: /tmp/amdgpu-install_31.30.313000-1_all.deb
4343

4444
- name: Install AMDGPU installer
4545
apt:
46-
deb: /tmp/amdgpu-install_7.1.70100-1_all.deb
46+
deb: /tmp/amdgpu-install_31.30.313000-1_all.deb
4747

4848
- name: Update apt cache again
4949
apt:
5050
update_cache: yes
5151

52-
- name: Install ROCm
52+
- name: Install AMD GPU DKMS driver
5353
apt:
54-
name: rocm
54+
name: amdgpu-dkms
5555
state: present
5656

5757
- name: Ensure render group exists with consistent GID

0 commit comments

Comments
 (0)