Skip to content

Commit 68a6443

Browse files
authored
Merge pull request #230 from NVIDIA/issue-template-overhaul
Overhauling issue templates
2 parents 01aa724 + 50d6931 commit 68a6443

5 files changed

Lines changed: 62 additions & 30 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Question
4+
url: https://github.com/NVIDIA/cuCollections/discussions
5+
about: Check out our Discussions page to ask and answer questions.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Enhancement
2+
description: Suggest an idea to improve cuCollections
3+
title: '[ENHANCEMENT]: '
4+
labels: ['type: enhancement']
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Is your feature request related to a problem? Please describe.
10+
description: A clear and concise description of what the problem is, e.g., "I would like to be able to..."
11+
placeholder: I would like an overload of `cuco::static_map::insert` that returns the success of each insertion.
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: proposed-solution
16+
attributes:
17+
label: Describe the solution you'd like
18+
description: A clear and concise description of what you want to happen.
19+
placeholder: |
20+
Add a new overload of `insert` that takes an output iterator range assignable from `bool` that indicates the success of each insert.
21+
Example API:
22+
template <typename InputIt, typename OutputIt>
23+
void insert(InputIt first_input, InputIt last_input, OutputIt first_input, cudaStream_t stream = 0);
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: alternatives
28+
attributes:
29+
label: Describe alternatives you've considered
30+
description:
31+
If applicable, please add a clear and concise description of any alternative solutions or features you've
32+
considered.
33+
placeholder: You can implement this yourself with the device-side API, but it would be more convenient as a bulk function.
34+
validations:
35+
required: false
36+
- type: textarea
37+
id: additional-context
38+
attributes:
39+
label: Additional context
40+
description: Add any other context about the request here.
41+
placeholder: This would be useful for sparse embedding tables in DL usecases.
42+
validations:
43+
required: false

.github/ISSUE_TEMPLATE/submit-question.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

SECURITY.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Security
2+
3+
NVIDIA is dedicated to the security and trust of our software products and services, including all source code repositories managed through our organization.
4+
5+
If you need to report a security issue, please use the appropriate contact points outlined below. **Please do not report security vulnerabilities through GitHub.**
6+
7+
## Reporting Potential Security Vulnerability in RAPIDS
8+
9+
To report a potential security vulnerability in RAPIDS:
10+
- Web: [Security Vulnerability Submission Form](https://www.nvidia.com/object/submit-security-vulnerability.html)
11+
- E-Mail: psirt@nvidia.com
12+
- We encourage you to use the following PGP key for secure email communication: [NVIDIA public PGP Key for communication](https://www.nvidia.com/en-us/security/pgp-key)
13+
- Please include the following information:
14+
- Product/Driver name and version/branch that contains the vulnerability

0 commit comments

Comments
 (0)