• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: �� Bug Report
2description: Create a report to help us reproduce and fix the bug
3
4body:
5- type: markdown
6  attributes:
7    value: >
8      #### 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/executorch/issues?q=is%3Aissue+sort%3Acreated-desc+).
9- type: textarea
10  attributes:
11    label: �� Describe the bug
12    description: |
13      Please provide a clear and concise description of what the bug is.
14
15      If relevant, add a minimal example so that we can reproduce the error by running the code.
16
17      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.
18
19      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``` ````.
20    placeholder: |
21      A clear and concise description of what the bug is.
22
23      ```python
24      # Sample code to reproduce the problem
25      ```
26
27      ```
28      The error message you got, with the full traceback.
29      ```
30  validations:
31    required: true
32- type: textarea
33  attributes:
34    label: Versions
35    description: |
36      Please run the following and paste the output below.
37      ```sh
38      wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
39      # For security purposes, please check the contents of collect_env.py before running it.
40      python collect_env.py
41      ```
42  validations:
43    required: true
44- type: markdown
45  attributes:
46    value: >
47      Thanks for contributing ��!
48