Skip to content

Commit 9149659

Browse files
committed
feat: remove unnecessary direct loading cudnn
Signed-off-by: Naren Dasan <[email protected]>
1 parent 2abe4ba commit 9149659

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

py/torch_tensorrt/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ def _find_lib(name, paths):
4444

4545
if sys.platform.startswith("win"):
4646
WIN_LIBS = [
47-
f"cublas64_{CUDA_MAJOR}.dll",
48-
f"cublasLt64_{CUDA_MAJOR}.dll",
49-
f"cudnn64_{CUDNN_MAJOR}.dll",
5047
"nvinfer.dll",
5148
"nvinfer_plugin.dll",
5249
]
@@ -76,7 +73,6 @@ def _find_lib(name, paths):
7673
]
7774

7875
LINUX_LIBS = [
79-
f"libcudnn.so.{CUDNN_MAJOR}",
8076
f"libnvinfer.so.{TENSORRT_MAJOR}",
8177
f"libnvinfer_plugin.so.{TENSORRT_MAJOR}",
8278
]

0 commit comments

Comments
 (0)