Skip to content

Commit 01aa724

Browse files
authored
Merge pull request #228 from NVIDIA/bug-issue-template
Create issue template form.
2 parents 77593b3 + 6e38d79 commit 01aa724

2 files changed

Lines changed: 109 additions & 26 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: '[BUG]: '
4+
labels: ['type: bug']
5+
body:
6+
- type: checkboxes
7+
id: check-duplicates
8+
attributes:
9+
label: Is this a duplicate?
10+
description: Check for duplicate issues.
11+
options:
12+
- label: I confirmed there appear to be no duplicate issues for this bug (https://github.com/NVIDIA/cuCollections/issues)
13+
required: true
14+
- type: dropdown
15+
id: bug-type
16+
attributes:
17+
label: Type of Bug
18+
description: What kind of bug are you running into?
19+
multiple: false
20+
options:
21+
- Silent Failure
22+
- Runtime Error
23+
- Compile-time Error
24+
- Performance
25+
- Something else
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: description
30+
attributes:
31+
label: Describe the bug
32+
description: A clear and concise description of what problem you are running into.
33+
placeholder: "cuco::static_map::insert fails to insert all keys."
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: reproduction
38+
attributes:
39+
label: How to Reproduce
40+
description: Steps used to reproduce the bug.
41+
placeholder: |
42+
1. Construct a cuco::static_map<int,int> with capacity for 100,000 elements.
43+
2. Insert 50,000 unique key-values.
44+
3. Perform '`find`' for all the same keys.
45+
4. Not all keys are found.
46+
validations:
47+
required: true
48+
- type: textarea
49+
id: expected-behavior
50+
attributes:
51+
label: Expected behavior
52+
description: A clear and concise description of what you expected to happen.
53+
placeholder: "`cuco::static_map::find` will find all inserted keys."
54+
validations:
55+
required: true
56+
- type: input
57+
id: reproduction-link
58+
attributes:
59+
label: Reproduction link
60+
description: If applicable, please provide a Compiler Explorer (godbolt) link to help explain your problem.
61+
placeholder: https://godbolt.org/z/M1szv5e1b
62+
validations:
63+
required: false
64+
- type: markdown
65+
attributes:
66+
value: '# System information'
67+
- type: input
68+
id: operating-system
69+
attributes:
70+
label: Operating System
71+
description:
72+
If applicable, the OS version where this bug occurs.
73+
placeholder: Ubuntu Linux 20.04
74+
validations:
75+
required: false
76+
- type: textarea
77+
id: nvidia-smi-output
78+
attributes:
79+
label: nvidia-smi output
80+
description: If applicable, the output from running the `nvidia-smi` command.
81+
placeholder: |
82+
+-----------------------------------------------------------------------------+
83+
| NVIDIA-SMI 495.29.05 Driver Version: 495.29.05 CUDA Version: 11.5 |
84+
|-------------------------------+----------------------+----------------------+
85+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
86+
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
87+
| | | MIG M. |
88+
|===============================+======================+======================|
89+
| 0 NVIDIA GeForce ... Off | 00000000:41:00.0 On | N/A |
90+
| 0% 25C P8 8W / 320W | 491MiB / 10015MiB | 0% Default |
91+
| | | N/A |
92+
+-------------------------------+----------------------+----------------------+
93+
validations:
94+
required: false
95+
96+
- type: textarea
97+
id: nvcc-version
98+
attributes:
99+
label: NVCC version
100+
description: If applicable, the version of nvcc you're using.
101+
placeholder: |
102+
nvcc --version
103+
nvcc: NVIDIA (R) Cuda compiler driver
104+
Copyright (c) 2005-2021 NVIDIA Corporation
105+
Built on Thu_Nov_18_09:45:30_PST_2021
106+
Cuda compilation tools, release 11.5, V11.5.119
107+
Build cuda_11.5.r11.5/compiler.30672275_0
108+
validations:
109+
required: false

0 commit comments

Comments
 (0)