tensorrt-cu12-bindings 10.10.0.31__cp313-none-win_amd64.whl → 10.14.1.48__cp313-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tensorrt-cu12-bindings might be problematic. Click here for more details.
- tensorrt_bindings/__init__.py +18 -5
- tensorrt_bindings/tensorrt.cp313-win_amd64.pyd +0 -0
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/METADATA +17 -17
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/RECORD +8 -8
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/WHEEL +1 -1
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/LICENSE.txt +0 -0
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/top_level.txt +0 -0
- {tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/zip-safe +0 -0
tensorrt_bindings/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# SPDX-FileCopyrightText: Copyright (c) 1993-
|
|
2
|
+
# SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
#
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -29,6 +29,9 @@ except (ImportError, ModuleNotFoundError):
|
|
|
29
29
|
else:
|
|
30
30
|
_libs_wheel_imported = True
|
|
31
31
|
|
|
32
|
+
_trt_lib_suffix = ""
|
|
33
|
+
if "nvinfer".strip() == "tensorrt_rtx":
|
|
34
|
+
_trt_lib_suffix = "_14"
|
|
32
35
|
|
|
33
36
|
if not _libs_wheel_imported and sys.platform.startswith("win"):
|
|
34
37
|
log_found_dlls = bool(int(os.environ.get("TRT_LOG_FOUND_DLLS", 0)))
|
|
@@ -48,6 +51,9 @@ if not _libs_wheel_imported and sys.platform.startswith("win"):
|
|
|
48
51
|
print(f"Found {name} in path: {libpath}")
|
|
49
52
|
return libpath
|
|
50
53
|
|
|
54
|
+
if False and name.startswith("nvinfer_plugin"):
|
|
55
|
+
return None
|
|
56
|
+
|
|
51
57
|
if name.startswith("nvinfer_builder_resource"):
|
|
52
58
|
return None
|
|
53
59
|
|
|
@@ -58,9 +64,15 @@ if not _libs_wheel_imported and sys.platform.startswith("win"):
|
|
|
58
64
|
# Order matters here because of dependencies
|
|
59
65
|
LIBRARIES = {
|
|
60
66
|
"tensorrt": [
|
|
61
|
-
"nvinfer_10.dll",
|
|
67
|
+
f"nvinfer_10{_trt_lib_suffix}.dll",
|
|
68
|
+
"nvinfer_plugin_10.dll",
|
|
69
|
+
f"nvonnxparser_10{_trt_lib_suffix}.dll",
|
|
70
|
+
"nvinfer_builder_resource_10.dll",
|
|
71
|
+
],
|
|
72
|
+
"tensorrt_rtx": [
|
|
73
|
+
f"nvinfer_10{_trt_lib_suffix}.dll",
|
|
62
74
|
"nvinfer_plugin_10.dll",
|
|
63
|
-
"nvonnxparser_10.dll",
|
|
75
|
+
f"nvonnxparser_10{_trt_lib_suffix}.dll",
|
|
64
76
|
"nvinfer_builder_resource_10.dll",
|
|
65
77
|
],
|
|
66
78
|
"tensorrt_dispatch": [
|
|
@@ -79,10 +91,11 @@ if not _libs_wheel_imported and sys.platform.startswith("win"):
|
|
|
79
91
|
ctypes.CDLL(lib_path)
|
|
80
92
|
|
|
81
93
|
del _libs_wheel_imported
|
|
94
|
+
del _trt_lib_suffix
|
|
82
95
|
|
|
83
96
|
from .tensorrt import *
|
|
84
97
|
|
|
85
|
-
__version__ = "10.
|
|
98
|
+
__version__ = "10.14.1.48"
|
|
86
99
|
|
|
87
100
|
|
|
88
101
|
# Provides Python's `with` syntax
|
|
@@ -119,7 +132,7 @@ Runtime.__exit__ = common_exit
|
|
|
119
132
|
IHostMemory.__enter__ = common_enter
|
|
120
133
|
IHostMemory.__exit__ = common_exit
|
|
121
134
|
|
|
122
|
-
if "tensorrt" == "tensorrt":
|
|
135
|
+
if "tensorrt" == "tensorrt" or "tensorrt" == "tensorrt_rtx":
|
|
123
136
|
Builder.__enter__ = common_enter
|
|
124
137
|
Builder.__exit__ = common_exit
|
|
125
138
|
|
|
Binary file
|
{tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/METADATA
RENAMED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: tensorrt_cu12_bindings
|
|
3
|
-
Version: 10.
|
|
4
|
-
Summary: A high performance deep learning inference library
|
|
5
|
-
Home-page: https://github.com/nvidia/tensorrt
|
|
6
|
-
Download-URL: https://developer.nvidia.com/tensorrt
|
|
7
|
-
Author: NVIDIA Corporation
|
|
8
|
-
License: Proprietary
|
|
9
|
-
Keywords: nvidia tensorrt deeplearning inference
|
|
10
|
-
Classifier: License :: Other/Proprietary License
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
License-File: LICENSE.txt
|
|
14
|
-
Provides-Extra: numpy
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
|
|
17
|
-
A high performance deep learning inference library
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tensorrt_cu12_bindings
|
|
3
|
+
Version: 10.14.1.48
|
|
4
|
+
Summary: A high performance deep learning inference library
|
|
5
|
+
Home-page: https://github.com/nvidia/tensorrt
|
|
6
|
+
Download-URL: https://developer.nvidia.com/tensorrt
|
|
7
|
+
Author: NVIDIA Corporation
|
|
8
|
+
License: Proprietary
|
|
9
|
+
Keywords: nvidia tensorrt deeplearning inference
|
|
10
|
+
Classifier: License :: Other/Proprietary License
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
License-File: LICENSE.txt
|
|
14
|
+
Provides-Extra: numpy
|
|
15
|
+
Requires-Dist: numpy; extra == "numpy"
|
|
16
|
+
|
|
17
|
+
A high performance deep learning inference library
|
{tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
tensorrt_bindings/__init__.py,sha256=
|
|
2
|
-
tensorrt_bindings/tensorrt.cp313-win_amd64.pyd,sha256=
|
|
1
|
+
tensorrt_bindings/__init__.py,sha256=4i0Xb-CBabdlCjWL4S4LLgqRt8XsswjKjDIL6Fa-b1Q,6861
|
|
2
|
+
tensorrt_bindings/tensorrt.cp313-win_amd64.pyd,sha256=7lAszllF0gIZaXfPswtFXt36mQoM0ND280nY8-hiCj8,2330624
|
|
3
3
|
tensorrt_bindings/plugin/__init__.py,sha256=C_9idhCxsIHfoBxidwwr6FHlkZVy5kjh-VnzTsGszcQ,1557
|
|
4
4
|
tensorrt_bindings/plugin/_autotune.py,sha256=xlNut0qB9rlgyhfV4QyVJEsT50r3PuFz1xk0pnDiVA8,12493
|
|
5
5
|
tensorrt_bindings/plugin/_export.py,sha256=CnjosYyQu5Ay3dYmddN6QxYLq-YUPgPDpcMXmcycfZM,1281
|
|
@@ -9,9 +9,9 @@ tensorrt_bindings/plugin/_tensor.py,sha256=fhZqxhFQMw-r9Ae8w9yrVa_qNO7HtIj_ZUEHi
|
|
|
9
9
|
tensorrt_bindings/plugin/_top_level.py,sha256=mxZk0M-v8aP1uMVziX6FDBxFQPq3Cp6gd0Iq09xRUro,4708
|
|
10
10
|
tensorrt_bindings/plugin/_utils.py,sha256=Hl2PslERH5X0UMArk_k8GKag7ME0pW0RjQcTX3zYsoc,2741
|
|
11
11
|
tensorrt_bindings/plugin/_validate.py,sha256=6BzbAu9cF8TDibfQQ_GbPEG0qs24_6TnSLLnkJ-OuIA,20017
|
|
12
|
-
tensorrt_cu12_bindings-10.
|
|
13
|
-
tensorrt_cu12_bindings-10.
|
|
14
|
-
tensorrt_cu12_bindings-10.
|
|
15
|
-
tensorrt_cu12_bindings-10.
|
|
16
|
-
tensorrt_cu12_bindings-10.
|
|
17
|
-
tensorrt_cu12_bindings-10.
|
|
12
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/LICENSE.txt,sha256=yGkV_ZW7773aMTWqzj5q1rRhKEbcvbxdL1o4sTndiLQ,47141
|
|
13
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/METADATA,sha256=I1XZbf7eHxdJ7hgqtdn46RmezsSQU3nxpXUkVRygiGA,623
|
|
14
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/WHEEL,sha256=zlI3-n3JA0L08ZiWtYCpUdOW75YNoZI0wL5nifEbw6M,99
|
|
15
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/top_level.txt,sha256=QuFeuaCbu20Zk7dFQs6JlSlk-ZLCkirage8XegBmyP0,18
|
|
16
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
17
|
+
tensorrt_cu12_bindings-10.14.1.48.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{tensorrt_cu12_bindings-10.10.0.31.dist-info → tensorrt_cu12_bindings-10.14.1.48.dist-info}/zip-safe
RENAMED
|
File without changes
|