|
44 | 44 | "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/zip/TensorRT-10.9.0.34.Windows.win10.cuda-12.8.zip",
|
45 | 45 | "strip_prefix": "TensorRT-10.9.0.34",
|
46 | 46 | },
|
47 |
| - "10.10.0": { |
48 |
| - "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/zip/TensorRT-10.10.0.31.Windows.win10.cuda-12.9.zip", |
49 |
| - "strip_prefix": "TensorRT-10.10.0.31", |
50 |
| - }, |
51 |
| - "10.11.0": { |
52 |
| - "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.11.0/zip/TensorRT-10.11.0.33.Windows.win10.cuda-12.9.zip", |
53 |
| - "strip_prefix": "TensorRT-10.11.0.33", |
54 |
| - }, |
55 | 47 | },
|
56 | 48 | "linux": {
|
57 | 49 | "10.3.0": {
|
|
70 | 62 | "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/tars/TensorRT-10.9.0.34.Linux.x86_64-gnu.cuda-12.8.tar.gz",
|
71 | 63 | "strip_prefix": "TensorRT-10.9.0.34",
|
72 | 64 | },
|
73 |
| - "10.10.0": { |
74 |
| - "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/tars/TensorRT-10.10.0.31.Linux.x86_64-gnu.cuda-12.9.tar.gz", |
75 |
| - "strip_prefix": "TensorRT-10.10.0.31", |
76 |
| - }, |
77 |
| - "10.11.0": { |
78 |
| - "urls": "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.11.0/tars/TensorRT-10.11.0.33.Linux.x86_64-gnu.cuda-12.9.tar.gz", |
79 |
| - "strip_prefix": "TensorRT-10.11.0.33", |
80 |
| - }, |
81 | 65 | },
|
82 | 66 | }
|
83 | 67 |
|
84 | 68 |
|
85 | 69 | def check_new_tensorrt_version(
|
86 | 70 | major: int = 10, patch_from: int = 0
|
87 | 71 | ) -> tuple[bool, str, str, str, str]:
|
88 |
| - breakpoint() |
89 |
| - |
90 | 72 | def check_file_availability(url: str) -> bool:
|
91 | 73 | try:
|
92 | 74 | response = requests.head(url, allow_redirects=True)
|
|
0 commit comments