|
TensorRT
|
Base class for all layer classes in a network definition. More...
#include <NvInfer.h>
Public Member Functions | |
| 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 ITensor * | getInput (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 ITensor * | getOutput (int index) const =0 |
| Get the layer output corresponding to the given index. More... | |
Base class for all layer classes in a network definition.
|
pure virtual |
Get the layer input corresponding to the given index.
| index | The index of the input tensor. |
|
pure virtual |
Return the name of a layer.
|
pure virtual |
Get the layer output corresponding to the given index.
|
pure virtual |
Return the type of a layer.
|
pure virtual |