From 5aa34f946f64fbdada8d41096e8d94917c95a190 Mon Sep 17 00:00:00 2001 From: Jenifer Christina Date: Fri, 26 Jun 2026 09:53:26 -0700 Subject: [PATCH] Fix native Linux package install instructions for multi-arch Point the native package repository base, apt source line, and rpm baseurl at packages-multi-arch/ (the per-distro repos only exist there), and correct the install command package name from the non-existent amdrocm-gfx94x to the actual amdrocm7.14-gfx942 metapackage. Co-authored-by: Cursor --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d019d0d..de5a5ee4 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ AMD provides prerelease ROCm packages for both Debian-based and RPM-based Linux Repository base URL: ``` -https://rocm.prereleases.amd.com/packages/ +https://rocm.prereleases.amd.com/packages-multi-arch/ ``` --- @@ -119,7 +119,7 @@ Replace `` with the appropriate distribution profile ```bash sudo tee /etc/apt/sources.list.d/rocm.list << EOF -deb [arch=amd64 signed-by=/etc/apt/keyrings/amdrocm.gpg] https://rocm.prereleases.amd.com/packages/ stable main +deb [arch=amd64 signed-by=/etc/apt/keyrings/amdrocm.gpg] https://rocm.prereleases.amd.com/packages-multi-arch/ stable main EOF sudo apt update ``` @@ -129,7 +129,7 @@ sudo apt update ###### Install ROCm ```bash -sudo apt install amdrocm-gfx94x # Change the gfx arch based on your machine. +sudo apt install amdrocm7.14-gfx942 # Change the version (7.14) and gfx arch (gfx942) based on your release and machine. ``` --- @@ -145,7 +145,7 @@ Replace `` with the appropriate distribution profile sudo tee /etc/yum.repos.d/rocm.repo << EOF [rocm] name=ROCm Prerelease Repository -baseurl=https://rocm.prereleases.amd.com/packages//x86_64/ +baseurl=https://rocm.prereleases.amd.com/packages-multi-arch//x86_64/ enabled=1 gpgcheck=1 gpgkey=https://rocm.prereleases.amd.com/packages/gpg/rocm.gpg @@ -158,5 +158,5 @@ sudo dnf clean all ###### Install ROCm ```bash -sudo dnf install amdrocm-gfx94x # Change the gfx arch based on your machine. +sudo dnf install amdrocm7.14-gfx942 # Change the version (7.14) and gfx arch (gfx942) based on your release and machine. ```