11
11
# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
12
12
# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
13
13
CUDA_VERSIONS_DICT = {
14
- "nightly" : ["cu126 " ],
15
- "test" : ["cu124 " , "cu126" ],
16
- "release" : ["cu124 " , "cu126" ],
14
+ "nightly" : ["cu128 " ],
15
+ "test" : ["cu118 " , "cu126" , "cu128 " ],
16
+ "release" : ["cu118 " , "cu126" , "cu128 " ],
17
17
}
18
18
19
19
# please update the python version you want to test with the future tensorRT version here
20
20
# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
21
21
# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
22
22
PYTHON_VERSIONS_DICT = {
23
- "nightly" : ["3.9 " ],
23
+ "nightly" : ["3.11 " ],
24
24
"test" : ["3.9" , "3.10" , "3.11" , "3.12" ],
25
25
"release" : ["3.9" , "3.10" , "3.11" , "3.12" ],
26
26
}
27
27
28
28
# please update the future tensorRT version you want to test here
29
29
TENSORRT_VERSIONS_DICT = {
30
30
"windows" : {
31
- "10.4.0" : {
32
- "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.4.0/zip/TensorRT-10.4.0.26.Windows.win10.cuda-12.6.zip" ,
33
- "strip_prefix" : "TensorRT-10.4.0.26" ,
34
- },
35
- "10.5.0" : {
36
- "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.5.0/zip/TensorRT-10.5.0.18.Windows.win10.cuda-12.6.zip" ,
37
- "strip_prefix" : "TensorRT-10.5.0.18" ,
38
- },
39
31
"10.6.0" : {
40
32
"urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.6.0/zip/TensorRT-10.6.0.26.Windows.win10.cuda-12.6.zip" ,
41
33
"strip_prefix" : "TensorRT-10.6.0.26" ,
44
36
"urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.7.0/zip/TensorRT-10.7.0.23.Windows.win10.cuda-12.6.zip" ,
45
37
"strip_prefix" : "TensorRT-10.7.0.23" ,
46
38
},
39
+ "10.8.0" : {
40
+ "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.8.0/zip/TensorRT-10.8.0.43.Windows.win10.cuda-12.8.zip" ,
41
+ "strip_prefix" : "TensorRT-10.8.0.43" ,
42
+ },
47
43
},
48
44
"linux" : {
49
- "10.4.0" : {
50
- "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.4.0/tars/TensorRT-10.4.0.26.Linux.x86_64-gnu.cuda-12.6.tar.gz" ,
51
- "strip_prefix" : "TensorRT-10.4.0.26" ,
52
- },
53
- "10.5.0" : {
54
- "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.5.0/tars/TensorRT-10.5.0.18.Linux.x86_64-gnu.cuda-12.6.tar.gz" ,
55
- "strip_prefix" : "TensorRT-10.5.0.18" ,
56
- },
57
45
"10.6.0" : {
58
46
"urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.6.0/tars/TensorRT-10.6.0.26.Linux.x86_64-gnu.cuda-12.6.tar.gz" ,
59
47
"strip_prefix" : "TensorRT-10.6.0.26" ,
62
50
"urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.7.0/tars/TensorRT-10.7.0.23.Linux.x86_64-gnu.cuda-12.6.tar.gz" ,
63
51
"strip_prefix" : "TensorRT-10.7.0.23" ,
64
52
},
53
+ "10.8.0" : {
54
+ "urls" : "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.8.0/tars/TensorRT-10.8.0.43.Linux.x86_64-gnu.cuda-12.8.tar.gz" ,
55
+ "strip_prefix" : "TensorRT-10.8.0.43" ,
56
+ },
65
57
},
66
58
}
67
59
@@ -87,7 +79,7 @@ def check_file_availability(url: str) -> bool:
87
79
# calculate the next minor version
88
80
minor = int (list (TENSORRT_VERSIONS_DICT ["linux" ].keys ())[- 1 ].split ("." )[1 ]) + 1
89
81
trt_version = f"{ major } .{ minor } .0"
90
- for patch in range (patch_from , 50 ):
82
+ for patch in range (patch_from , 80 ):
91
83
for cuda_minor in range (4 , 11 ):
92
84
trt_linux_release_url_candidate = f"https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/{ trt_version } /tars/TensorRT-{ trt_version } .{ patch } .Linux.x86_64-gnu.cuda-12.{ cuda_minor } .tar.gz"
93
85
if check_file_availability (trt_linux_release_url_candidate ):
0 commit comments