-
Notifications
You must be signed in to change notification settings - Fork 89
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
Adding issue template #2541
Adding issue template #2541
Changes from all commits
e980b5f
4445ca8
9dbea06
0c31b11
4ec43fb
cf73a0d
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: true | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
name: Issue Report | ||
description: File a report for ROCm related issues on Linux and Windows. For issues pertaining to documentation or non-bug related, please open a blank issue located below. | ||
title: "[Issue]: " | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to fill out this report! | ||
|
||
You can acquire your OS, CPU, GPU (for filling out this report) with the following commands: | ||
|
||
Linux: | ||
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)"; | ||
|
||
Windows: | ||
(Get-WmiObject Win32_OperatingSystem).Version | ||
(Get-WmiObject win32_Processor).Name | ||
(Get-WmiObject win32_VideoController).Name | ||
- type: textarea | ||
attributes: | ||
label: Problem Description | ||
description: Describe the issue you encountered. | ||
validations: | ||
required: true | ||
- type: input | ||
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)" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: CPU | ||
description: What CPU did you encounter the issue on? | ||
placeholder: "e.g. AMD Ryzen 9 5900HX with Radeon Graphics" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: GPU | ||
description: What GPU(s) did you encounter the issue on (you can select multiple GPUs from the list) | ||
multiple: true | ||
options: | ||
- AMD Instinct MI300 | ||
- AMD Instinct MI300A | ||
- AMD Instinct MI300X | ||
- AMD Instinct MI250X | ||
- AMD Instinct MI250 | ||
- AMD Instinct MI210 | ||
- AMD Instinct MI100 | ||
- AMD Instinct MI50 | ||
- AMD Instinct MI25 | ||
- AMD Radeon Pro V620 | ||
- AMD Radeon Pro VII | ||
- AMD Radeon RX 7900 XTX | ||
- AMD Radeon VII | ||
- AMD Radeon Pro W7900 | ||
- AMD Radeon Pro W7800 | ||
- AMD Radeon Pro W6800 | ||
- AMD Radeon Pro W6600 | ||
- AMD Radeon Pro W5500 | ||
- AMD Radeon RX 7900 XT | ||
- AMD Radeon RX 7600 | ||
- AMD Radeon RX 6950 XT | ||
- AMD Radeon RX 6900 XT | ||
- AMD Radeon RX 6800 XT | ||
- AMD Radeon RX 6800 | ||
- AMD Radeon RX 6750 | ||
- AMD Radeon RX 6700 XT | ||
- AMD Radeon RX 6700 | ||
- AMD Radeon RX 6650 XT | ||
- AMD Radeon RX 6600 XT | ||
- AMD Radeon RX 6600 | ||
- Other | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Other | ||
description: If you selected Other, please specify | ||
- type: dropdown | ||
attributes: | ||
label: ROCm Version | ||
description: What version(s) of ROCm did you encounter the issue on? | ||
multiple: true | ||
options: | ||
- ROCm 6.0.0 | ||
- ROCm 5.7.1 | ||
- ROCm 5.7.0 | ||
- ROCm 5.6.0 | ||
- ROCm 5.5.1 | ||
- ROCm 5.5.0 | ||
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. We dont really want to maintain a list of rocm versions here. How would a user report the issue with rocm 6.0 or 6.1 that is not on the list? It should just be 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. I added ROCm 6.0.0 We've opted for a drop down instead of an input field because it standardizes how it is represented. If we pulled an issue from this repo into a dashboard, we can easily search for ROCm 6.0.0 vs trying to find rocm 6, or ROCm 6, ROCM 6, etc. 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. You cant do a regex like 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. This decision was based on how users submitted issues in the RadeonOpenCompute organization. There was too much variation and grouping related issues was difficult. 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. So how does a user report an issue with 6.1 or 6.2 when they are released? There is no option for those versions. 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. I would have to submit another PR 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. But how does the user report it when the PR hasn't been merged yet? Such PRs would be lower priority to merge if we are needing to get features or bug fixes in, so this is a likely scenario. Very likely users will probably pick a random version and then add a comment to which rocm version they are actually using. So this field seems completely useless. |
||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
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 | ||
description: The output of rocminfo --support could help to better address the problem. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional Information | ||
description: (Optional) Any additional information that is relevant, e.g. relevant environment variables, dockerfiles, log files, dmesg output (on Linux), etc. | ||
validations: | ||
required: false |
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.
What does this mean? Does this mean we can still open issues without the template?
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.
yes for issues that don't align with the template