|
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 | + }, |
47 | 55 | },
|
48 | 56 | "linux": {
|
49 | 57 | "10.3.0": {
|
|
62 | 70 | "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",
|
63 | 71 | "strip_prefix": "TensorRT-10.9.0.34",
|
64 | 72 | },
|
| 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 | + }, |
65 | 81 | },
|
66 | 82 | }
|
67 | 83 |
|
68 | 84 |
|
69 | 85 | def check_new_tensorrt_version(
|
70 | 86 | major: int = 10, patch_from: int = 0
|
71 | 87 | ) -> tuple[bool, str, str, str, str]:
|
| 88 | + breakpoint() |
| 89 | + |
72 | 90 | def check_file_availability(url: str) -> bool:
|
73 | 91 | try:
|
74 | 92 | response = requests.head(url, allow_redirects=True)
|
|
0 commit comments