TensorRT  7.0.0.11
nvinfer1::IPaddingLayer Class Referenceabstract

Layer that represents a padding operation. More...

#include <NvInfer.h>

Inheritance diagram for nvinfer1::IPaddingLayer:
nvinfer1::ILayer

Public Member Functions

virtual TRT_DEPRECATED void setPrePadding (DimsHW padding)=0
 Set the padding that is applied at the start of the tensor. More...
 
virtual TRT_DEPRECATED DimsHW getPrePadding () const =0
 Get the padding that is applied at the start of the tensor. More...
 
virtual TRT_DEPRECATED void setPostPadding (DimsHW padding)=0
 Set the padding that is applied at the end of the tensor. More...
 
virtual TRT_DEPRECATED DimsHW getPostPadding () const =0
 Get the padding that is applied at the end of the tensor. More...
 
virtual void setPrePaddingNd (Dims padding)=0
 Set the padding that is applied at the start of the tensor. More...
 
virtual Dims getPrePaddingNd () const =0
 Get the padding that is applied at the start of the tensor. More...
 
virtual void setPostPaddingNd (Dims padding)=0
 Set the padding that is applied at the end of the tensor. More...
 
virtual Dims getPostPaddingNd () const =0
 Get the padding that is applied at the end of the tensor. More...
 
- Public Member Functions inherited from nvinfer1::ILayer
virtual LayerType getType () const =0
 Return the type of a layer. More...
 
virtual void setName (const char *name)=0
 Set the name of a layer. More...
 
virtual const char * getName () const =0
 Return the name of a layer. More...
 
virtual int getNbInputs () const =0
 Get the number of inputs of a layer.
 
virtual ITensorgetInput (int index) const =0
 Get the layer input corresponding to the given index. More...
 
virtual int getNbOutputs () const =0
 Get the number of outputs of a layer.
 
virtual ITensorgetOutput (int index) const =0
 Get the layer output corresponding to the given index. More...
 
virtual void setInput (int index, ITensor &tensor)=0
 Replace an input of this layer with a specific tensor. More...
 
virtual void setPrecision (DataType dataType)=0
 Set the computational precision of this layer. More...
 
virtual DataType getPrecision () const =0
 get the computational precision of this layer More...
 
virtual bool precisionIsSet () const =0
 whether the computational precision has been set for this layer More...
 
virtual void resetPrecision ()=0
 reset the computational precision for this layer More...
 
virtual void setOutputType (int index, DataType dataType)=0
 Set the output type of this layer. More...
 
virtual DataType getOutputType (int index) const =0
 get the output type of this layer More...
 
virtual bool outputTypeIsSet (int index) const =0
 whether the output type has been set for this layer More...
 
virtual void resetOutputType (int index)=0
 reset the output type for this layer More...
 

Detailed Description

Layer that represents a padding operation.

The padding layer adds zero-padding at the start and end of the input tensor. It only supports padding along the two innermost dimensions. Applying negative padding results in cropping of the input.

Warning
Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI.

Member Function Documentation

virtual TRT_DEPRECATED DimsHW nvinfer1::IPaddingLayer::getPostPadding ( ) const
pure virtual

Get the padding that is applied at the end of the tensor.

See also
setPostPadding
Deprecated:
Superseded by getPostPaddingNd
virtual Dims nvinfer1::IPaddingLayer::getPostPaddingNd ( ) const
pure virtual

Get the padding that is applied at the end of the tensor.

Warning
Only 2 dimensionsional padding is currently supported.
See also
setPostPaddingNd
virtual TRT_DEPRECATED DimsHW nvinfer1::IPaddingLayer::getPrePadding ( ) const
pure virtual

Get the padding that is applied at the start of the tensor.

See also
setPrePadding
Deprecated:
Superseded by getPrePaddingNd
virtual Dims nvinfer1::IPaddingLayer::getPrePaddingNd ( ) const
pure virtual

Get the padding that is applied at the start of the tensor.

Warning
Only 2 dimensionsional padding is currently supported.
See also
setPrePaddingNd
virtual TRT_DEPRECATED void nvinfer1::IPaddingLayer::setPostPadding ( DimsHW  padding)
pure virtual

Set the padding that is applied at the end of the tensor.

Negative padding results in trimming the edge by the specified amount

See also
getPostPadding
Deprecated:
Superseded by setPostPaddingNd
virtual void nvinfer1::IPaddingLayer::setPostPaddingNd ( Dims  padding)
pure virtual

Set the padding that is applied at the end of the tensor.

Negative padding results in trimming the edge by the specified amount

Warning
Only 2 dimensionsional padding is currently supported.
See also
getPostPaddingNd
virtual TRT_DEPRECATED void nvinfer1::IPaddingLayer::setPrePadding ( DimsHW  padding)
pure virtual

Set the padding that is applied at the start of the tensor.

Negative padding results in trimming the edge by the specified amount

See also
getPrePadding
Deprecated:
Superseded by setPrePaddingNd
virtual void nvinfer1::IPaddingLayer::setPrePaddingNd ( Dims  padding)
pure virtual

Set the padding that is applied at the start of the tensor.

Negative padding results in trimming the edge by the specified amount.

Warning
Only 2 dimensionsional padding is currently supported.
See also
getPrePaddingNd

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