nvinfer1::IPluginCreator* const* tmpList = getPluginRegistry()->getPluginCreatorList(&numCreators);
for (int k = 0; k < numCreators; ++k)
{
if (!tmpList[k])
{
std::cout << "Plugin Creator for plugin " << k << " is a nullptr." << std::endl;
continue;
}
std::string pluginName = tmpList[k]->getPluginName();
std::cout << k << ": " << pluginName << std::endl;
}
By doing as above i can see that my plugins are in TRT Registry. But still i get the same error even though the op name is the same as implemented plugin.