forked from linbinskn/FasterTransformer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bug_report.yml as template
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 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,32 @@ | ||
name: "Bug Report" | ||
description: Submit a bug report | ||
labels: [ "bug" ] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please share your system info with us. | ||
render: shell | ||
placeholder: branch, docker version, GPU type | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduced-steps | ||
attributes: | ||
label: Reproduced Steps | ||
description: Please provide the step to reproduce the bugs | ||
render: shell | ||
placeholder: | | ||
Steps to reproduce your bugs: | ||
1. docker run -ti --gpus all nvcr.io/nvidia/pytorch:22.03-py3 bash | ||
2. git clone https://github.com/NVIDIA/FasterTransformer.git | ||
3. cd FasterTransformer mkdir build && cd build | ||
4. cmake -DSM=80 -DCMAKE_BUILD_TYPE=Release .. && make -j12 | ||
5. ./bin/bert_example 32 12 32 12 64 0 0 | ||
6. What error you see. | ||
validations: | ||
required: true |