TensorRT  7.0.0.11
nvinfer1::IPlugin Class Referenceabstract

Plugin class for user-implemented layers. More...

#include <NvInferRuntime.h>

Inheritance diagram for nvinfer1::IPlugin:
nvinfer1::IPluginExt nvinfer1::plugin::INvPlugin

Public Member Functions

virtual int getNbOutputs () const =0
 Get the number of outputs from the layer. More...
 
virtual Dims getOutputDimensions (int index, const Dims *inputs, int nbInputDims)=0
 Get the dimension of an output tensor. More...
 
virtual void configure (const Dims *inputDims, int nbInputs, const Dims *outputDims, int nbOutputs, int maxBatchSize)=0
 Configure the layer. More...
 
virtual int initialize ()=0
 Initialize the layer for execution. This is called when the engine is created. More...
 
virtual void terminate ()=0
 Release resources acquired during plugin layer initialization. This is called when the engine is destroyed. More...
 
virtual size_t getWorkspaceSize (int maxBatchSize) const =0
 Find the workspace size required by the layer. More...
 
virtual int enqueue (int batchSize, const void *const *inputs, void **outputs, void *workspace, cudaStream_t stream)=0
 Execute the layer. More...
 
virtual size_t getSerializationSize ()=0
 Find the size of the serialization buffer required. More...
 
virtual void serialize (void *buffer)=0
 Serialize the layer. More...
 

Detailed Description

Plugin class for user-implemented layers.

Plugins are a mechanism for applications to implement custom layers. Each plugin is owned by the application, and its lifetime must span any use of it by TensorRT

Member Function Documentation

virtual void nvinfer1::IPlugin::configure ( const Dims inputDims,
int  nbInputs,
const Dims outputDims,
int  nbOutputs,
int  maxBatchSize 
)
pure virtual

Configure the layer.

This function is called by the builder prior to initialize(). It provides an opportunity for the layer to make algorithm choices on the basis of its weights, dimensions, and maximum batch size. The type is assumed to be FP32 and format NCHW.

Parameters
inputDimsThe input tensor dimensions.
nbInputsThe number of inputs.
outputDimsThe output tensor dimensions.
nbOutputsThe number of outputs.
maxBatchSizeThe maximum batch size.

The dimensions passed here do not include the outermost batch size (i.e. for 2-D image networks, they will be 3-dimensional CHW dimensions).

This method is not called for PluginExt classes, configureWithFormat is called instead.

Implemented in nvinfer1::IPluginExt.

virtual int nvinfer1::IPlugin::enqueue ( int  batchSize,
const void *const *  inputs,
void **  outputs,
void *  workspace,
cudaStream_t  stream 
)
pure virtual

Execute the layer.

Parameters
batchSizeThe number of inputs in the batch.
inputsThe memory for the input tensors.
outputsThe memory for the output tensors.
workspaceWorkspace for execution.
streamThe stream in which to execute the kernels.
Returns
0 for success, else non-zero (which will cause engine termination).
virtual int nvinfer1::IPlugin::getNbOutputs ( ) const
pure virtual

Get the number of outputs from the layer.

Returns
The number of outputs.

This function is called by the implementations of INetworkDefinition and IBuilder. In particular, it is called prior to any call to initialize().

virtual Dims nvinfer1::IPlugin::getOutputDimensions ( int  index,
const Dims inputs,
int  nbInputDims 
)
pure virtual

Get the dimension of an output tensor.

Parameters
indexThe index of the output tensor.
inputsThe input tensors.
nbInputDimsThe number of input tensors.

This function is called by the implementations of INetworkDefinition and IBuilder. In particular, it is called prior to any call to initialize().

virtual size_t nvinfer1::IPlugin::getSerializationSize ( )
pure virtual

Find the size of the serialization buffer required.

Returns
The size of the serialization buffer.
virtual size_t nvinfer1::IPlugin::getWorkspaceSize ( int  maxBatchSize) const
pure virtual

Find the workspace size required by the layer.

This function is called during engine startup, after initialize(). The workspace size returned should be sufficient for any batch size up to the maximum.

Returns
The workspace size.
virtual int nvinfer1::IPlugin::initialize ( )
pure virtual

Initialize the layer for execution. This is called when the engine is created.

Returns
0 for success, else non-zero (which will cause engine termination).
virtual void nvinfer1::IPlugin::serialize ( void *  buffer)
pure virtual

Serialize the layer.

Parameters
bufferA pointer to a buffer of size at least that returned by getSerializationSize().
See also
getSerializationSize()
virtual void nvinfer1::IPlugin::terminate ( )
pure virtual

Release resources acquired during plugin layer initialization. This is called when the engine is destroyed.

See also
initialize()

The documentation for this class was generated from the following file: