TensorRT 8.5.3
|
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...
#include <NvInferRuntimeCommon.h>
Public Member Functions | |
virtual bool | registerCreator (IPluginCreator &creator, AsciiChar const *const pluginNamespace) noexcept=0 |
Register a plugin creator. Returns false if one with same type is already registered. More... | |
virtual IPluginCreator *const * | getPluginCreatorList (int32_t *const numCreators) const noexcept=0 |
Return all the registered plugin creators and the number of registered plugin creators. Returns nullptr if none found. More... | |
virtual IPluginCreator * | getPluginCreator (AsciiChar const *const pluginName, AsciiChar const *const pluginVersion, AsciiChar const *const pluginNamespace="") noexcept=0 |
Return plugin creator based on plugin name, version, and namespace associated with plugin during network creation. More... | |
virtual void | setErrorRecorder (IErrorRecorder *const recorder) noexcept=0 |
Set the ErrorRecorder for this interface. More... | |
virtual IErrorRecorder * | getErrorRecorder () const noexcept=0 |
Set the ErrorRecorder assigned to this interface. More... | |
virtual bool | deregisterCreator (IPluginCreator const &creator) noexcept=0 |
Deregister a previously registered plugin creator. More... | |
Protected Member Functions | |
virtual | ~IPluginRegistry () noexcept=default |
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.
|
protectedvirtualdefaultnoexcept |
|
pure virtualnoexcept |
Deregister a previously registered plugin creator.
Since there may be a desire to limit the number of plugins, this function provides a mechanism for removing plugin creators registered in TensorRT. The plugin creator that is specified by creator
is removed from TensorRT and no longer tracked.
Usage considerations
|
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.
Usage considerations
|
pure virtualnoexcept |
Return plugin creator based on plugin name, version, and namespace associated with plugin during network creation.
Usage considerations
|
pure virtualnoexcept |
Return all the registered plugin creators and the number of registered plugin creators. Returns nullptr if none found.
Usage considerations
|
pure virtualnoexcept |
Register a plugin creator. Returns false if one with same type is already registered.
Usage considerations
|
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.
recorder | The error recorder to register with this interface. |
Usage considerations
Copyright © 2024 NVIDIA Corporation
Privacy Policy |
Manage My Privacy |
Do Not Sell or Share My Data |
Terms of Service |
Accessibility |
Corporate Policies |
Product Security |
Contact