Single registration point for all plugins in an application. It is used to find plugin implementations during engine deserialization. Internally, the plugin registry is considered to be a singleton so all plugins in an application are part of the same global registry. Note that the plugin registry is only supported for plugins of type IPluginV2 and should also have a corresponding IPluginCreator implementation.
More...
Single registration point for all plugins in an application. It is used to find plugin implementations during engine deserialization. Internally, the plugin registry is considered to be a singleton so all plugins in an application are part of the same global registry. Note that the plugin registry is only supported for plugins of type IPluginV2 and should also have a corresponding IPluginCreator implementation.
- See also
- IPluginV2 and IPluginCreator
- Warning
- Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI.
◆ ~IPluginRegistry()
virtual nvinfer1::IPluginRegistry::~IPluginRegistry |
( |
| ) |
|
|
inlineprotectedvirtualnoexcept |
◆ registerCreator()
virtual bool nvinfer1::IPluginRegistry::registerCreator |
( |
IPluginCreator & |
creator, |
|
|
const char * |
pluginNamespace |
|
) |
| |
|
pure virtualnoexcept |
Register a plugin creator.
Returns false if one with same type is already registered.
◆ getPluginCreatorList()
virtual IPluginCreator* const* nvinfer1::IPluginRegistry::getPluginCreatorList |
( |
int32_t * |
numCreators | ) |
const |
|
pure virtualnoexcept |
Return all the registered plugin creators and the number of registered plugin creators.
Returns nullptr if none found.
◆ getPluginCreator()
virtual IPluginCreator* nvinfer1::IPluginRegistry::getPluginCreator |
( |
const char * |
pluginType, |
|
|
const char * |
pluginVersion, |
|
|
const char * |
pluginNamespace = "" |
|
) |
| |
|
pure virtualnoexcept |
Return plugin creator based on plugin type, version and namespace associated with plugin during network creation.
◆ setErrorRecorder()
virtual void nvinfer1::IPluginRegistry::setErrorRecorder |
( |
IErrorRecorder * |
recorder | ) |
|
|
pure virtualnoexcept |
Set the ErrorRecorder for this interface.
Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. This function will call incRefCount of the registered ErrorRecorder at least once. Setting recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if a recorder has been registered.
- Parameters
-
recorder | The error recorder to register with this interface. |
- See also
- getErrorRecorder
◆ getErrorRecorder()
virtual IErrorRecorder* nvinfer1::IPluginRegistry::getErrorRecorder |
( |
| ) |
const |
|
pure virtualnoexcept |
set the ErrorRecorder assigned to this interface.
Retrieves the assigned error recorder object for the given class. A default error recorder does not exist, so a nullptr will be returned if setErrorRecorder has not been called, or an ErrorRecorder has not been inherited.
- Returns
- A pointer to the IErrorRecorder object that has been registered.
- See also
- setErrorRecorder
The documentation for this class was generated from the following file: