From fd88f91fb486d11f85f7c6fa67e29491eb7483ef Mon Sep 17 00:00:00 2001 From: Daniel Holanda Date: Tue, 19 May 2026 17:51:28 -0700 Subject: [PATCH 1/2] Enable stx/krk on pytorch playbook --- playbooks/core/pytorch-rocm-llms/README.md | 5 +++++ playbooks/core/pytorch-rocm-llms/playbook.json | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/playbooks/core/pytorch-rocm-llms/README.md b/playbooks/core/pytorch-rocm-llms/README.md index 6de8fea5..c09a88ba 100644 --- a/playbooks/core/pytorch-rocm-llms/README.md +++ b/playbooks/core/pytorch-rocm-llms/README.md @@ -11,6 +11,11 @@ SPDX-License-Identifier: MIT ## Overview + +> [!IMPORTANT] +> This playbook uses special tags that GitHub cannot render. Please visit [amd.com/playbooks](https://amd.com/playbooks) to correctly preview this content. + + Want to run powerful AI language models on your own hardware? This guide shows you how. This tutorial uses PyTorch powered by AMD ROCmâ„¢ software to run models that can summarize documents, answer questions, generate text, and more, all running locally. diff --git a/playbooks/core/pytorch-rocm-llms/playbook.json b/playbooks/core/pytorch-rocm-llms/playbook.json index 86908d15..a590ef8c 100644 --- a/playbooks/core/pytorch-rocm-llms/playbook.json +++ b/playbooks/core/pytorch-rocm-llms/playbook.json @@ -25,6 +25,14 @@ "halo": [ "linux", "windows" + ], + "stx": [ + "linux", + "windows" + ], + "krk": [ + "linux", + "windows" ] }, "required_platforms": { @@ -41,6 +49,14 @@ "halo": [ "windows", "linux" + ], + "stx": [ + "linux", + "windows" + ], + "krk": [ + "linux", + "windows" ] }, "difficulty": "beginner", From ff175f0e6404f5af0e9d8668e8a886e3ebf2ac5a Mon Sep 17 00:00:00 2001 From: Sreeram Date: Thu, 21 May 2026 19:49:00 -0700 Subject: [PATCH 2/2] Removing `amd-gpu-visible-linux` test This old ROCm 7.2 test is checking for a system `/opt/rocm` installation, but the ROCm 7.12/7.13 setup is a pip/venv ROCm Core SDK installation. --- playbooks/dependencies/driver.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/playbooks/dependencies/driver.md b/playbooks/dependencies/driver.md index 342bfa1e..6d49c444 100644 --- a/playbooks/dependencies/driver.md +++ b/playbooks/dependencies/driver.md @@ -29,16 +29,5 @@ Download and install the latest AMD GPU driver for Linux: 1. Visit the [AMD Linux Drivers](https://www.amd.com/en/support/download/linux-drivers.html) page. 2. Follow the installation instructions provided on the download page. - -```bash -set -euo pipefail -sudo -n apt-get update -y -sudo -n apt-get install -y rocm-smi -rocm-smi -rocm-smi --showproductname -test -d /opt/rocm -test -e /opt/rocm/lib/libroctx64.so.4 -o -e /opt/rocm/lib/libroctx64.so -``` -