tensorrt-cu12-bindings 10.9.0.34__cp39-none-win_amd64.whl → 10.11.0.33__cp39-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 +11 -4
- tensorrt_bindings/plugin/_lib.py +1 -1
- tensorrt_bindings/tensorrt.cp39-win_amd64.pyd +0 -0
- {tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/METADATA +1 -1
- tensorrt_cu12_bindings-10.11.0.33.dist-info/RECORD +17 -0
- tensorrt_cu12_bindings-10.9.0.34.dist-info/RECORD +0 -17
- {tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/LICENSE.txt +0 -0
- {tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/WHEEL +0 -0
- {tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/top_level.txt +0 -0
- {tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.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 = "_11"
|
|
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,9 @@ 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",
|
|
62
68
|
"nvinfer_plugin_10.dll",
|
|
63
|
-
"nvonnxparser_10.dll",
|
|
69
|
+
f"nvonnxparser_10{_trt_lib_suffix}.dll",
|
|
64
70
|
"nvinfer_builder_resource_10.dll",
|
|
65
71
|
],
|
|
66
72
|
"tensorrt_dispatch": [
|
|
@@ -79,10 +85,11 @@ if not _libs_wheel_imported and sys.platform.startswith("win"):
|
|
|
79
85
|
ctypes.CDLL(lib_path)
|
|
80
86
|
|
|
81
87
|
del _libs_wheel_imported
|
|
88
|
+
del _trt_lib_suffix
|
|
82
89
|
|
|
83
90
|
from .tensorrt import *
|
|
84
91
|
|
|
85
|
-
__version__ = "10.
|
|
92
|
+
__version__ = "10.11.0.33"
|
|
86
93
|
|
|
87
94
|
|
|
88
95
|
# Provides Python's `with` syntax
|
tensorrt_bindings/plugin/_lib.py
CHANGED
|
@@ -361,7 +361,7 @@ def _register_plugin_creator(name: str, namespace: str, attrs_types):
|
|
|
361
361
|
plg_creator = _TemplatePluginCreator(name, namespace, attrs_types)
|
|
362
362
|
plg_registry.register_creator(plg_creator, namespace)
|
|
363
363
|
plg_creator = plg_registry.get_creator(name, "1", namespace)
|
|
364
|
-
QDP_CREATORS[f"{
|
|
364
|
+
QDP_CREATORS[f"{namespace}::{name}"] = plg_creator
|
|
365
365
|
return plg_creator
|
|
366
366
|
|
|
367
367
|
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
tensorrt_bindings/__init__.py,sha256=mkzHFuPmYhAe1OEm-P_Br5wB-QvrvTapA_SRmSZNd5o,6600
|
|
2
|
+
tensorrt_bindings/tensorrt.cp39-win_amd64.pyd,sha256=jwH7hPnKKnHrQ037oy_ISL7-WS15HnO75mDw7a-vOUk,2300928
|
|
3
|
+
tensorrt_bindings/plugin/__init__.py,sha256=C_9idhCxsIHfoBxidwwr6FHlkZVy5kjh-VnzTsGszcQ,1557
|
|
4
|
+
tensorrt_bindings/plugin/_autotune.py,sha256=xlNut0qB9rlgyhfV4QyVJEsT50r3PuFz1xk0pnDiVA8,12493
|
|
5
|
+
tensorrt_bindings/plugin/_export.py,sha256=CnjosYyQu5Ay3dYmddN6QxYLq-YUPgPDpcMXmcycfZM,1281
|
|
6
|
+
tensorrt_bindings/plugin/_lib.py,sha256=LnZp36MnKji4aFvJiqtQEJw1nK2vfJ7xDXqf8WGlZ7U,29344
|
|
7
|
+
tensorrt_bindings/plugin/_plugin_class.py,sha256=935UKagUcj9as-U2g434gAnaQt5IkA-L969vYRbc_A4,17907
|
|
8
|
+
tensorrt_bindings/plugin/_tensor.py,sha256=fhZqxhFQMw-r9Ae8w9yrVa_qNO7HtIj_ZUEHimounp4,38637
|
|
9
|
+
tensorrt_bindings/plugin/_top_level.py,sha256=mxZk0M-v8aP1uMVziX6FDBxFQPq3Cp6gd0Iq09xRUro,4708
|
|
10
|
+
tensorrt_bindings/plugin/_utils.py,sha256=Hl2PslERH5X0UMArk_k8GKag7ME0pW0RjQcTX3zYsoc,2741
|
|
11
|
+
tensorrt_bindings/plugin/_validate.py,sha256=6BzbAu9cF8TDibfQQ_GbPEG0qs24_6TnSLLnkJ-OuIA,20017
|
|
12
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/LICENSE.txt,sha256=yGkV_ZW7773aMTWqzj5q1rRhKEbcvbxdL1o4sTndiLQ,47141
|
|
13
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/METADATA,sha256=9Ey0-9nQ4ezcYs9EEUFSi9OWdBXjb4mZxT_K9YpIrHo,607
|
|
14
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/WHEEL,sha256=T8VPDjot1YI5-NaRzS6kIMlJNVl0SSGa_dm-8Fprszg,99
|
|
15
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/top_level.txt,sha256=QuFeuaCbu20Zk7dFQs6JlSlk-ZLCkirage8XegBmyP0,18
|
|
16
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
17
|
+
tensorrt_cu12_bindings-10.11.0.33.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
tensorrt_bindings/__init__.py,sha256=tJOZ12p3C5j9I_6yNR6oADn-ZHT3_AE4l8siETRsBzo,6366
|
|
2
|
-
tensorrt_bindings/tensorrt.cp39-win_amd64.pyd,sha256=VuIWSpoIqn3OnVs5g1mSUQKkdcE6Mwc3wKU1TI2gvWo,1964032
|
|
3
|
-
tensorrt_bindings/plugin/__init__.py,sha256=C_9idhCxsIHfoBxidwwr6FHlkZVy5kjh-VnzTsGszcQ,1557
|
|
4
|
-
tensorrt_bindings/plugin/_autotune.py,sha256=xlNut0qB9rlgyhfV4QyVJEsT50r3PuFz1xk0pnDiVA8,12493
|
|
5
|
-
tensorrt_bindings/plugin/_export.py,sha256=CnjosYyQu5Ay3dYmddN6QxYLq-YUPgPDpcMXmcycfZM,1281
|
|
6
|
-
tensorrt_bindings/plugin/_lib.py,sha256=EiOrumU6o0gBcAhGELz-eVcKa3r-yEI12XsSxky1NDA,29344
|
|
7
|
-
tensorrt_bindings/plugin/_plugin_class.py,sha256=935UKagUcj9as-U2g434gAnaQt5IkA-L969vYRbc_A4,17907
|
|
8
|
-
tensorrt_bindings/plugin/_tensor.py,sha256=fhZqxhFQMw-r9Ae8w9yrVa_qNO7HtIj_ZUEHimounp4,38637
|
|
9
|
-
tensorrt_bindings/plugin/_top_level.py,sha256=mxZk0M-v8aP1uMVziX6FDBxFQPq3Cp6gd0Iq09xRUro,4708
|
|
10
|
-
tensorrt_bindings/plugin/_utils.py,sha256=Hl2PslERH5X0UMArk_k8GKag7ME0pW0RjQcTX3zYsoc,2741
|
|
11
|
-
tensorrt_bindings/plugin/_validate.py,sha256=6BzbAu9cF8TDibfQQ_GbPEG0qs24_6TnSLLnkJ-OuIA,20017
|
|
12
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/LICENSE.txt,sha256=yGkV_ZW7773aMTWqzj5q1rRhKEbcvbxdL1o4sTndiLQ,47141
|
|
13
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/METADATA,sha256=RMmEom25XeK_awJzeCt5FMulqvHlHh_Ewo3faPL8_ug,606
|
|
14
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/WHEEL,sha256=T8VPDjot1YI5-NaRzS6kIMlJNVl0SSGa_dm-8Fprszg,99
|
|
15
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/top_level.txt,sha256=QuFeuaCbu20Zk7dFQs6JlSlk-ZLCkirage8XegBmyP0,18
|
|
16
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
17
|
-
tensorrt_cu12_bindings-10.9.0.34.dist-info/RECORD,,
|
|
File without changes
|
{tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
{tensorrt_cu12_bindings-10.9.0.34.dist-info → tensorrt_cu12_bindings-10.11.0.33.dist-info}/zip-safe
RENAMED
|
File without changes
|