1111# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
1212# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
1313CUDA_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 " ],
1717}
1818
1919# please update the python version you want to test with the future tensorRT version here
2020# channel: nightly if the future tensorRT version test workflow is triggered from the main branch or your personal branch
2121# channel: test if the future tensorRT version test workflow is triggered from the release branch(release/2.5 etc....)
2222PYTHON_VERSIONS_DICT = {
23- "nightly" : ["3.9 " ],
23+ "nightly" : ["3.11 " ],
2424 "test" : ["3.9" , "3.10" , "3.11" , "3.12" ],
2525 "release" : ["3.9" , "3.10" , "3.11" , "3.12" ],
2626}
2727
2828# please update the future tensorRT version you want to test here
2929TENSORRT_VERSIONS_DICT = {
3030 "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- },
3931 "10.6.0" : {
4032 "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" ,
4133 "strip_prefix" : "TensorRT-10.6.0.26" ,
4436 "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" ,
4537 "strip_prefix" : "TensorRT-10.7.0.23" ,
4638 },
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+ },
4743 },
4844 "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- },
5745 "10.6.0" : {
5846 "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" ,
5947 "strip_prefix" : "TensorRT-10.6.0.26" ,
6250 "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" ,
6351 "strip_prefix" : "TensorRT-10.7.0.23" ,
6452 },
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+ },
6557 },
6658}
6759
@@ -87,7 +79,7 @@ def check_file_availability(url: str) -> bool:
8779 # calculate the next minor version
8880 minor = int (list (TENSORRT_VERSIONS_DICT ["linux" ].keys ())[- 1 ].split ("." )[1 ]) + 1
8981 trt_version = f"{ major } .{ minor } .0"
90- for patch in range (patch_from , 50 ):
82+ for patch in range (patch_from , 80 ):
9183 for cuda_minor in range (4 , 11 ):
9284 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"
9385 if check_file_availability (trt_linux_release_url_candidate ):
0 commit comments