win10下torch和trt无法一起加载

self._handle = _dlopen(self._name, mode)
OSError: [WinError 127] 找不到指定的程序。

import torch
import tensorrt as trt

就这两行代码然后就报错了

OSError: [WinError 127] 找不到指定的程序。

这里推测 我有两个cuda版本,trt依赖的是cuda11.5,torch依赖是cuda11.3

先加载torch导致trt找不到依赖的库。

解决方案,先加载trt,再加载torch。

import tensorrt as trt
import torch


if __name__ == "__main__":
    print(torch.__version__)
    print(trt.__version__)
    print("hello world")

你可能感兴趣的:(推理框架,TensorRT,深度框架,Pytorch,c#,window,网络)