File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # Contributors
2+
3+ Below is a list of developers who have contributed to torch2trt. This is also used to track contributors
4+ who have agreed to torch2trt's Contributor License Agreement.
5+
6+
7+ ## Becoming a Contributor
8+
9+ If you've made a notable contribution to torch2trt and wish to be listed as a contributor, simply do the following.
10+
11+ 1 . Modify `` CONTRIBUTORS.md `` and add your name with a hyperlink to your GitHub account.
12+
13+ ``` md
14+ - [<Full name or GitHub account>](https://github.com/<GitHub account>)
15+ ```
16+
17+ 2. Stage the changes in a standalone commit
18+
19+ ```md
20+ git add CONTRIBUTORS.md
21+ ```
22+
23+ 3. Make a signed commit with the following message text
24+
25+ ```md
26+ git commit -S -m "Added <Full name or GitHub account> to CONTRIBUTORS.md."
27+ ```
28+
29+ ## Signing Contributor License Agreement (CLA)
30+
31+ In some instances, you may be requested to sign torch2trt's Contributor License Agreement (CLA). To do so,
32+
33+ 1. If you're not already listed as a contributor in CONTRIBUTORS.md, make a commit as described above to add yourself to CONTRIBUTORS.md
34+
35+ 2. Add the text ``(CLA)`` after your name in ``CONTRIBUTORS.md``
36+ 3. Stage the changes in a standalone commit
37+
38+ ```md
39+ git add CONTRIBUTORS.md
40+ ```
41+ 4 . Make a signed commit with the following text
42+
43+ ``` md
44+ git commit -S -m "I have read and agree to the Contributor License Agreement as written in the file CLA.md of this project. Signed, <Full Name>"
45+ ```
46+
You can’t perform that action at this time.
0 commit comments