Skip to content

Commit

Permalink
Update/bug template (#339)
Browse files Browse the repository at this point in the history
* fix: fix bug of attention mask chosen when enabling shared context opt

* feat: update the bug template

* fix: fix bug of bug_report.yml
byshiue authored Oct 4, 2022
1 parent f73a2cf commit bc077a9
Showing 1 changed file with 32 additions and 9 deletions.
41 changes: 32 additions & 9 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -2,25 +2,48 @@ name: "Bug Report"
description: Submit a bug report
labels: [ "bug" ]
body:
- type: textarea
id: description
- type: input
id: branch
attributes:
label: Description
description: Please share your system info with us.
render: shell
placeholder: branch, docker version, GPU type
label: Branch/Tag/Commit
description:
placeholder: ex,. main
validations:
required: true
- type: input
id: docker_image_version
attributes:
label: Docker Image Version
description:
placeholder: ex,. nvcr.io/nvidia/pytorch:22.08-py3
validations:
required: true
- type: input
id: gpu_name
attributes:
label: GPU name
description:
placeholder: ex,. A100
validations:
required: true
- type: input
id: cuda_driver
attributes:
label: CUDA Driver
description:
placeholder: ex,. 515.65.01
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:
Steps to reproduce your bugs: (please list what script you run and don't say following xxx, otherwise, we will ask again and again)
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

0 comments on commit bc077a9

Please sign in to comment.