Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit ce31887

Browse files
committed
Add nitro to rel-v0.7.1
1 parent 2f169d1 commit ce31887

21 files changed

+2690
-2
lines changed
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
name: "Bug Report"
2+
description: Submit a bug report to help us improve TensorRT-LLM
3+
labels: [ "bug" ]
4+
body:
5+
- type: textarea
6+
id: system-info
7+
attributes:
8+
label: System Info
9+
description: Please share your system info with us.
10+
placeholder: |
11+
- CPU architecture (e.g., x86_64, aarch64)
12+
- CPU/Host memory size (if known)
13+
- GPU properties
14+
- GPU name (e.g., NVIDIA H100, NVIDIA A100, NVIDIA L40S)
15+
- GPU memory size (if known)
16+
- Clock frequencies used (if applicable)
17+
- Libraries
18+
- TensorRT-LLM branch or tag (e.g., main, v0.7.1)
19+
- TensorRT-LLM commit (if known)
20+
- Versions of TensorRT, AMMO, CUDA, cuBLAS, etc. used
21+
- Container used (if running TensorRT-LLM in a container)
22+
- NVIDIA driver version
23+
- OS (Ubuntu 22.04, CentOS 7, Windows 10)
24+
- Any other information that may be useful in reproducing the bug
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: who-can-help
30+
attributes:
31+
label: Who can help?
32+
description: |
33+
To expedite the response to your issue, it would be helpful if you could identify the appropriate person
34+
to tag using the **@** symbol. Here is a general guideline on **whom to tag**.
35+
36+
Rest assured that all issues are reviewed by the core maintainers. If you are unsure about whom to tag,
37+
you can leave it blank, and a core maintainer will make sure to involve the appropriate person.
38+
39+
Please tag fewer than 3 people.
40+
41+
Quantization: @Tracin
42+
43+
Documentation: @juney-nvidia
44+
45+
Feature request: @ncomly-nvidia
46+
47+
Performance: @kaiyux
48+
49+
Others: @byshiue
50+
51+
placeholder: "@Username ..."
52+
53+
- type: checkboxes
54+
id: information-scripts-examples
55+
attributes:
56+
label: Information
57+
description: 'The problem arises when using:'
58+
options:
59+
- label: "The official example scripts"
60+
- label: "My own modified scripts"
61+
62+
- type: checkboxes
63+
id: information-tasks
64+
attributes:
65+
label: Tasks
66+
description: "The tasks I am working on are:"
67+
options:
68+
- label: "An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)"
69+
- label: "My own task or dataset (give details below)"
70+
71+
- type: textarea
72+
id: reproduction
73+
validations:
74+
required: true
75+
attributes:
76+
label: Reproduction
77+
description: |
78+
Kindly share a code example that demonstrates the issue you encountered. It is recommending to provide a code snippet directly.
79+
Additionally, if you have any error messages, or stack traces related to the problem, please include them here.
80+
81+
Remember to use code tags to properly format your code. You can refer to the
82+
link https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting for guidance on code formatting.
83+
84+
Please refrain from using screenshots, as they can be difficult to read and prevent others from copying and pasting your code.
85+
It would be most helpful if we could reproduce your issue by simply copying and pasting your scripts and codes.
86+
87+
placeholder: |
88+
Steps to reproduce the behavior:
89+
90+
1.
91+
2.
92+
3.
93+
94+
- type: textarea
95+
id: expected-behavior
96+
validations:
97+
required: true
98+
attributes:
99+
label: Expected behavior
100+
description: "Provide a brief summary of the expected behavior of the software. Provide output files or examples if possible."
101+
102+
- type: textarea
103+
id: actual-behavior
104+
validations:
105+
required: true
106+
attributes:
107+
label: actual behavior
108+
description: "Describe the actual behavior of the software and how it deviates from the expected behavior. Provide output files or examples if possible."
109+
110+
- type: textarea
111+
id: additioanl-notes
112+
validations:
113+
required: true
114+
attributes:
115+
label: additional notes
116+
description: "Provide any additional context here you think might be useful for the TensorRT-LLM team to help debug this issue (such as experiments done, potential things to investigate)."

0 commit comments

Comments
 (0)