From a912a817936562017ec2fed0f7137139921b0a04 Mon Sep 17 00:00:00 2001 From: Harkirat Gill Date: Thu, 3 Sep 2026 17:09:48 -0400 Subject: [PATCH 1/2] Add install method + package inventory fields to issue template --- .github/ISSUE_TEMPLATE/issue_report.yml | 43 ++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml index c1763be..0fb00c6 100644 --- a/.github/ISSUE_TEMPLATE/issue_report.yml +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -14,7 +14,7 @@ body: ``` echo "OS:" && cat /etc/os-release | grep -E "^(NAME=|VERSION=)"; echo "CPU: " && cat /proc/cpuinfo | grep "model name" | sort --unique; - echo "GPU:" && /opt/rocm/bin/rocminfo | grep -E "^\s*(Name|Marketing Name)"; + echo "GPU:" && rocminfo | grep -E "^\s*(Name|Marketing Name)"; ``` Windows: @@ -33,7 +33,7 @@ body: attributes: label: Operating System description: What is the name and version number of the OS? - placeholder: "e.g. Ubuntu 22.04.3 LTS (Jammy Jellyfish)" + placeholder: "e.g. Ubuntu 26.04 LTS" validations: required: true - type: input @@ -54,9 +54,42 @@ body: attributes: label: ROCm Version description: What version(s) of ROCm did you encounter the issue on? - placeholder: "e.g. ROCm 6.3.1" + placeholder: "e.g. ROCm 10.0" validations: required: true +- type: dropdown + attributes: + label: Installation Method + description: How did you install ROCm? + options: + - Python wheels (pip) + - Package manager (apt / dnf / yum / zypper) + - Tarball / archive + - Built from source + - Other (describe in Additional Information) + validations: + required: true +- type: textarea + attributes: + label: Installed ROCm Packages / Versions + description: | + Paste the output of the command matching your installation method above. This inventory of installed component versions is critical for triage. + + - Python wheels (pip): `pip freeze` + - Package manager (apt): `apt list --installed 2>/dev/null | grep -iE "rocm|hip|amdgpu"` + - Package manager (rpm): `rpm -qa | grep -i rocm` + - Tarball / source: `cat /opt/rocm/.info/version*` + value: | +
+ Installed ROCm packages / versions + + ``` + Paste output here + ``` + +
+ validations: + required: false - type: dropdown attributes: label: ROCm Component @@ -133,10 +166,10 @@ body: description: (Optional) Detailed steps to reproduce the issue. validations: required: false - + - type: textarea attributes: - label: (Optional for Linux users) Output of /opt/rocm/bin/rocminfo --support + label: (Optional for Linux users) Output of rocminfo --support description: The output of rocminfo --support could help to better address the problem. It is pre-wrapped in a collapsible section below. value: |
From b077935e2ad1d7553544022b32cf7ee5922e9636 Mon Sep 17 00:00:00 2001 From: Harkirat Gill Date: Thu, 3 Sep 2026 17:18:50 -0400 Subject: [PATCH 2/2] Trim yum from package managers and remove tarball version hint --- .github/ISSUE_TEMPLATE/issue_report.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml index 0fb00c6..2c6be39 100644 --- a/.github/ISSUE_TEMPLATE/issue_report.yml +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -62,9 +62,9 @@ body: label: Installation Method description: How did you install ROCm? options: - - Python wheels (pip) - - Package manager (apt / dnf / yum / zypper) - - Tarball / archive + - Python wheels + - Package manager + - Tarball - Built from source - Other (describe in Additional Information) validations: @@ -75,10 +75,8 @@ body: description: | Paste the output of the command matching your installation method above. This inventory of installed component versions is critical for triage. - - Python wheels (pip): `pip freeze` - - Package manager (apt): `apt list --installed 2>/dev/null | grep -iE "rocm|hip|amdgpu"` - - Package manager (rpm): `rpm -qa | grep -i rocm` - - Tarball / source: `cat /opt/rocm/.info/version*` + - Python wheels: `pip freeze` + - Package manager: `apt list --installed 2>/dev/null | grep -iE "rocm|hip|amdgpu"` (use the equivalent for your package manager, e.g. `rpm -qa` on dnf/zypper systems) value: |
Installed ROCm packages / versions