tensorRT_Pro
tensorRT_Pro copied to clipboard
plugin windows10 x64 异常
老师,您好,在windows10 x64 转换 hswish.plugin.onnx 模型转换时会异常,无法解析onnx 文件,creator 指针一直为空,请问有遇到过这种问题吗,或者可能的原因是什么?谢谢
auto registry = getPluginRegistry();
auto creator = registry->getPluginCreator(name.c_str(), "1", "");
if(creator == nullptr){
printf("%s plugin was not found in the plugin registry!", name.c_str());
ASSERT(false, ErrorCode::kUNSUPPORTED_NODE);
}
windows下可能会注册失败,也就是creator函数没有执行,这个需要确认一下,他与caffe的layer注册问题类似:https://blog.csdn.net/fengbingchun/article/details/54286435
windows下可能会注册失败,也就是creator函数没有执行,这个需要确认一下,他与caffe的layer注册问题类似:https://blog.csdn.net/fengbingchun/article/details/54286435