-
Notifications
You must be signed in to change notification settings - Fork 3
Fix native Linux package install instructions for multi-arch #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 `<os_profile>` 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/<os_profile> stable main | ||
| deb [arch=amd64 signed-by=/etc/apt/keyrings/amdrocm.gpg] https://rocm.prereleases.amd.com/packages-multi-arch/<os_profile> 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. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let keep this as amdrocm(runtime alone) or even better amdrocm-core-sdk(full ROCm core) |
||
| ``` | ||
|
|
||
| --- | ||
|
|
@@ -145,7 +145,7 @@ Replace `<os_profile>` 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/<os_profile>/x86_64/ | ||
| baseurl=https://rocm.prereleases.amd.com/packages-multi-arch/<os_profile>/x86_64/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instead of os_profile, lets give either rhel10 so that just copy paste works and in comments can ask user to change according to their OS |
||
| 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. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let keep this as amdrocm(runtime alone) or even better amdrocm-core-sdk(full ROCm core) |
||
| ``` | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of os_profile, lets give either ubuntu2404 or ubuntu2604 so that just copy paste works and in comments can ask user to change according to their OS