mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Users have been submitting fuzzer issues without meeting the requirements outline in the torch.compile issue template. This updates the note to remind users to use the torch.compile template for torch.compile bugs. Pull Request resolved: https://github.com/pytorch/pytorch/pull/145960 Approved by: https://github.com/eellison
56 lines
2.7 KiB
YAML
56 lines
2.7 KiB
YAML
name: 🐛 Bug Report
|
|
description: Create a report to help us reproduce and fix the bug
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: >
|
|
#### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/pytorch/pytorch/issues?q=is%3Aissue+sort%3Acreated-desc+). Note: Please write your bug report in English to ensure it can be understood and addressed by the development team. If you are filing a bug for torch.compile, please use the [torch.compile issue template](https://github.com/pytorch/pytorch/issues/new?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen&template=pt2-bug-report.yml).
|
|
- type: textarea
|
|
attributes:
|
|
label: 🐛 Describe the bug
|
|
description: |
|
|
Please provide a clear and concise description of what the bug is.
|
|
|
|
If relevant, add a minimal example so that we can reproduce the error by running the code. It is very important for the snippet to be as succinct (minimal) as possible, so please take time to trim down any irrelevant code to help us debug efficiently. We are going to copy-paste your code and we expect to get the same result as you did: avoid any external data, and include the relevant imports, etc. For example:
|
|
|
|
```python
|
|
# All necessary imports at the beginning
|
|
import torch
|
|
|
|
# A succinct reproducing example trimmed down to the essential parts:
|
|
t = torch.rand(5, 10) # Note: the bug is here, we should pass requires_grad=True
|
|
t.sum().backward()
|
|
```
|
|
|
|
If the code is too long (hopefully, it isn't), feel free to put it in a public gist and link it in the issue: https://gist.github.com.
|
|
|
|
Please also paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````.
|
|
placeholder: |
|
|
A clear and concise description of what the bug is.
|
|
|
|
```python
|
|
# Sample code to reproduce the problem
|
|
```
|
|
|
|
```
|
|
The error message you got, with the full traceback.
|
|
```
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Versions
|
|
description: |
|
|
Please run the following and paste the output below.
|
|
```sh
|
|
wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
|
|
# For security purposes, please check the contents of collect_env.py before running it.
|
|
python collect_env.py
|
|
```
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: >
|
|
Thanks for contributing 🎉!
|