-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into amyachev/remove-workaround-profiler
- Loading branch information
Showing
696 changed files
with
47,838 additions
and
23,950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Report a bug | ||
description: Report triton failing to compile a kernel, or giving incorrect results | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
#### Disclaimer | ||
The core triton team is small and has very limited capacity. We may not have time to look into your report. | ||
For the best results, please: | ||
- Avoid submitting duplicates. Search through [the existing and past issues](https://github.com/triton-lang/triton/issues?q=is%3Aissue+sort%3Acreated-desc+) first to see if it's been reported previously. | ||
- Check if the issue persists with a build from the latest source. | ||
- Provide all relevant information in the initial report, to prevent unnecessary back and forth discussion. | ||
- If you can, try to diagnose and/or fix the issue yourself. We welcome high quality contributions. | ||
- 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 complete example](https://stackoverflow.com/help/minimal-reproducible-example) that reproduces the bug. It is very important for the snippet to be as simple 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, so include both the kernel and launching code as well as any relevant imports. | ||
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: Environment details | ||
description: | | ||
Please include any relevant context about how you're running the reproducer e.g. which version of triton, and what GPU you are using. | ||
placeholder: | | ||
Triton: ... | ||
GPU: ... | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Community help | ||
url: https://discord.gg/gpumode | ||
about: GPU-mode discord community has a triton channel which is a great resource for help writing/learning triton |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: 🚀 Feature request | ||
description: Submit a request for a new Intel XPU Backend for Triton feature | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: 🚀 Feature description | ||
description: > | ||
A clear and concise description of the feature request. | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for contributing 🎉 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Report a performance issue | ||
description: Report cases where triton is generating sub-optimal (but functionally correct) PTX/LLVM IR | ||
labels: ["performance"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
#### Disclaimer | ||
The core triton team is small and has very limited capacity. We may not have time to look into your report. | ||
For the best results, please: | ||
- Avoid submitting duplicates. Search through [the existing and past issues](https://github.com/triton-lang/triton/issues?q=is%3Aissue+sort%3Acreated-desc+) first to see if it's been reported previously. | ||
- Check if the issue persists with a build from the latest source. | ||
- Provide all relevant information in the initial report, to prevent unnecessary back and forth discussion. | ||
- If you can, try to diagnose and/or fix the issue yourself. We welcome high quality contributions. | ||
- type: textarea | ||
attributes: | ||
label: Describe the issue | ||
description: | | ||
Please provide a clear and concise description of the issue. | ||
Include a [minimal complete example](https://stackoverflow.com/help/minimal-reproducible-example) that reproduces the issue. It is very important for the snippet to be as simple 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. | ||
A reproducer could be a python program that runs a triton kernel and prints out the relevant suboptimal IR, or an IR file with an accompanying triton-opt command. | ||
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. | ||
placeholder: | | ||
A clear and concise description of the issue. | ||
```python | ||
# Sample code to reproduce the problem | ||
``` | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Environment details | ||
description: | | ||
Please include any relevant context about how you're running the reproducer e.g. which version of triton, and what GPU you are using. | ||
placeholder: | | ||
Triton: ... | ||
GPU: ... | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.