TensorRT  7.2.2.3
nvinfer1::IResizeLayer Class Referenceabstract

A resize layer in a network definition. More...

#include <NvInfer.h>

Inheritance diagram for nvinfer1::IResizeLayer:
nvinfer1::ILayer

Public Member Functions

virtual void setOutputDimensions (Dims dimensions)=0
 Set the output dimensions. More...
 
virtual Dims getOutputDimensions () const =0
 Get the output dimensions. More...
 
virtual void setScales (const float *scales, int32_t nbScales)=0
 Set the resize scales. More...
 
virtual int32_t getScales (int32_t size, float *scales) const =0
 Copies resize scales to scales[0, ..., nbScales-1], where nbScales is the number of scales that were set. More...
 
virtual void setResizeMode (ResizeMode resizeMode)=0
 Set resize mode for an input tensor. More...
 
virtual ResizeMode getResizeMode () const =0
 Get resize mode for an input tensor. More...
 
virtual void setAlignCorners (bool alignCorners)=0
 Set whether to align corners while resizing. More...
 
virtual bool getAlignCorners () const =0
 True if align corners has been set. More...
 
void setInput (int32_t index, ITensor &tensor) _TENSORRT_OVERRIDE=0
 Append or replace an input of this layer with a specific 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 int32_t getNbInputs () const =0
 Get the number of inputs of a layer.
 
virtual ITensorgetInput (int32_t index) const =0
 Get the layer input corresponding to the given index. More...
 
virtual int32_t getNbOutputs () const =0
 Get the number of outputs of a layer.
 
virtual ITensorgetOutput (int32_t index) const =0
 Get the layer output corresponding to the given index. 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 (int32_t index, DataType dataType)=0
 Set the output type of this layer. More...
 
virtual DataType getOutputType (int32_t index) const =0
 get the output type of this layer More...
 
virtual bool outputTypeIsSet (int32_t index) const =0
 whether the output type has been set for this layer More...
 
virtual void resetOutputType (int32_t index)=0
 reset the output type for this layer More...
 

Detailed Description

A resize layer in a network definition.

Resize layer can be used for resizing a ND tensor.

Resize layer currently supports the following configurations:

Default resize mode is ResizeMode::kNEAREST. Resize layer provides two ways to resize tensor dimensions.

  • Set output dimensions directly. It can be done for static as well as dynamic resize layer. Static resize layer requires output dimensions to be known at build-time. Dynamic resize layer requires output dimensions to be set as one of the input tensors.
  • Set scales for resize. Each output dimension is calculated as floor(input dimension * scale). Only static resize layer allows setting scales where the scales are known at build-time.
Warning
Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI.

Member Function Documentation

◆ getAlignCorners()

virtual bool nvinfer1::IResizeLayer::getAlignCorners ( ) const
pure virtual

True if align corners has been set.

Returns
True if align corners has been set, false otherwise.

◆ getOutputDimensions()

virtual Dims nvinfer1::IResizeLayer::getOutputDimensions ( ) const
pure virtual

Get the output dimensions.

Returns
The output dimensions.

◆ getResizeMode()

virtual ResizeMode nvinfer1::IResizeLayer::getResizeMode ( ) const
pure virtual

Get resize mode for an input tensor.

Returns
The resize mode.

◆ getScales()

virtual int32_t nvinfer1::IResizeLayer::getScales ( int32_t  size,
float *  scales 
) const
pure virtual

Copies resize scales to scales[0, ..., nbScales-1], where nbScales is the number of scales that were set.

Parameters
sizeThe number of scales to get. If size != nbScales, no scales will be copied.
scalesPointer to where to copy the scales. Scales will be copied only if size == nbScales and scales != nullptr.

In case the size is not known consider using size = 0 and scales = nullptr. This method will return the number of resize scales.

Returns
The number of resize scales i.e. nbScales if scales were set. Return -1 in case no scales were set or resize layer is used in dynamic mode.

◆ setAlignCorners()

virtual void nvinfer1::IResizeLayer::setAlignCorners ( bool  alignCorners)
pure virtual

Set whether to align corners while resizing.

If true, the centers of the 4 corner pixels of both input and output tensors are aligned i.e. preserves the values of corner pixels.

Default: false.

◆ setInput()

void nvinfer1::IResizeLayer::setInput ( int32_t  index,
ITensor tensor 
)
pure virtual

Append or replace an input of this layer with a specific tensor.

Parameters
indexthe index of the input to modify.
tensorthe new input tensor

Sets the input tensor for the given index. The index must be 0 for a static resize layer. A static resize layer is converted to a dynamic resize layer by calling setInput with an index 1. A dynamic resize layer cannot be converted back to a static resize layer.

For a dynamic resize layer, the values 0 and 1 are valid. The indices in the dynamic case are as follows:

  • 0: Data or Shape tensor to be resized.
  • 1: The output dimensions, as a 1D Int32 shape tensor.

If this function is called with a value 1, then the function getNbInputs() changes from returning 1 to 2.

Implements nvinfer1::ILayer.

◆ setOutputDimensions()

virtual void nvinfer1::IResizeLayer::setOutputDimensions ( Dims  dimensions)
pure virtual

Set the output dimensions.

Parameters
dimensionsThe output dimensions. Number of output dimensions must be the same as the number of input dimensions.

If there is a second input, i.e. resize layer is dynamic, calling setOutputDimensions() is an error and does not update the dimensions.

Output dimensions can be specified directly, or via scale factors relative to input dimensions. Scales for resize can be provided using setScales().

See also
setScales
getOutputDimensions

◆ setResizeMode()

virtual void nvinfer1::IResizeLayer::setResizeMode ( ResizeMode  resizeMode)
pure virtual

Set resize mode for an input tensor.

Supported resize modes are Nearest Neighbor and Linear.

See also
ResizeMode

◆ setScales()

virtual void nvinfer1::IResizeLayer::setScales ( const float *  scales,
int32_t  nbScales 
)
pure virtual

Set the resize scales.

Parameters
scalesAn array of resize scales.
nbScalesNumber of scales. Number of scales must be equal to the number of input dimensions.

If there is a second input, i.e. resize layer is dynamic, calling setScales() is an error and does not update the scales.

Output dimensions are calculated as follows: outputDims[i] = floor(inputDims[i] * scales[i])

Output dimensions can be specified directly, or via scale factors relative to input dimensions. Output dimensions can be provided directly using setOutputDimensions().

See also
setOutputDimensions
getScales

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