Skip to content

Commit 1f92a78

Browse files
committed
add comments
1 parent 1bf5673 commit 1f92a78

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/scripts/generate-tensorrt-test-matrix.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,25 @@
55
import json
66
import sys
77

8+
# please update the cuda version you want to test with the future tensorRT version here
9+
# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
10+
# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
811
CUDA_VERSIONS_DICT = {
912
"nightly": ["cu124"],
1013
"test": ["cu121", "cu124"],
1114
"release": ["cu121", "cu124"],
1215
}
1316

17+
# please update the python version you want to test with the future tensorRT version here
18+
# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
19+
# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
1420
PYTHON_VERSIONS_DICT = {
1521
"nightly": ["3.9"],
1622
"test": ["3.9", "3.10", "3.11", "3.12"],
1723
"release": ["3.9", "3.10", "3.11", "3.12"],
1824
}
1925

26+
# please update the future tensorRT version you want to test here
2027
TENSORRT_VERSIONS_DICT = {
2128
"windows": {
2229
"10.4.0": {

0 commit comments

Comments
 (0)