|
19 | 19 |
|
20 | 20 | TENSORRT_VERSIONS_DICT = {
|
21 | 21 | "windows": {
|
22 |
| - "10.4": { |
| 22 | + "10.4.0": { |
23 | 23 | "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",
|
24 | 24 | "strip_prefix": "TensorRT-10.4.0.26",
|
25 | 25 | "sha256": "3a7de83778b9e9f812fd8901e07e0d7d6fc54ce633fcff2e340f994df2c6356c",
|
26 | 26 | },
|
27 |
| - "10.5": { |
| 27 | + "10.5.0": { |
28 | 28 | "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",
|
29 | 29 | "strip_prefix": "TensorRT-10.5.0.18",
|
30 | 30 | "sha256": "e6436f4164db4e44d727354dccf7d93755efb70d6fbfd6fa95bdfeb2e7331b24",
|
31 | 31 | },
|
32 | 32 | },
|
33 | 33 | "linux": {
|
34 |
| - "10.4": { |
| 34 | + "10.4.0": { |
35 | 35 | "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",
|
36 | 36 | "strip_prefix": "TensorRT-10.4.0.26",
|
37 | 37 | "sha256": "cb0273ecb3ba4db8993a408eedd354712301a6c7f20704c52cdf9f78aa97bbdb",
|
38 | 38 | },
|
39 |
| - "10.5": { |
| 39 | + "10.5.0": { |
40 | 40 | "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",
|
41 | 41 | "strip_prefix": "TensorRT-10.5.0.18",
|
42 | 42 | "sha256": "f404d379d639552a3e026cd5267213bd6df18a4eb899d6e47815bbdb34854958",
|
@@ -92,8 +92,9 @@ def main(args: list[str]) -> None:
|
92 | 92 | item["desired_cuda"] in cuda_versions
|
93 | 93 | and item["python_version"] in python_versions
|
94 | 94 | ):
|
95 |
| - for _, tensorrt_json in tensorrt_versions.items(): |
| 95 | + for tensorrt_version, tensorrt_json in tensorrt_versions.items(): |
96 | 96 | new_item = copy.deepcopy(item)
|
| 97 | + tensorrt_json["version"] = tensorrt_version |
97 | 98 | new_item["tensorrt"] = tensorrt_json
|
98 | 99 | filtered_includes.append(new_item)
|
99 | 100 | filtered_matrix_dict = {}
|
|
0 commit comments