| Package | Description |
|---|---|
| org.bytedeco.tensorrt.global | |
| org.bytedeco.tensorrt.nvinfer | |
| org.bytedeco.tensorrt.nvparsers |
| Modifier and Type | Method and Description |
|---|---|
static IPluginV2 |
nvinfer_plugin.createAnchorGeneratorPlugin(GridAnchorParameters param,
int numLayers)
\brief The Grid Anchor Generator plugin layer generates the prior boxes of
designated sizes and aspect ratios across all dimensions (H x W) for all feature maps.
|
static IPluginV2 |
nvinfer_plugin.createAnchorGeneratorPlugin(GridAnchorParameters param,
int numLayers)
\brief The Grid Anchor Generator plugin layer generates the prior boxes of
designated sizes and aspect ratios across all dimensions (H x W) for all feature maps.
|
static IPluginV2 |
nvinfer_plugin.createBatchedNMSPlugin(NMSParameters param)
\brief The BatchedNMS Plugin performs non_max_suppression on the input boxes, per batch, across all classes.
|
static IPluginV2 |
nvinfer_plugin.createBatchedNMSPlugin(NMSParameters param)
\brief The BatchedNMS Plugin performs non_max_suppression on the input boxes, per batch, across all classes.
|
static IPluginV2 |
nvinfer_plugin.createInstanceNormalizationPlugin(float epsilon,
Weights scale_weights,
Weights bias_weights)
\brief The Instance Normalization Plugin computes the instance normalization of an input tensor.
|
static IPluginV2 |
nvinfer_plugin.createInstanceNormalizationPlugin(float epsilon,
Weights scale_weights,
Weights bias_weights)
\brief The Instance Normalization Plugin computes the instance normalization of an input tensor.
|
static IPluginV2 |
nvinfer_plugin.createNMSPlugin(DetectionOutputParameters param)
\brief The DetectionOutput plugin layer generates the detection output based on location and confidence
predictions by doing non maximum suppression.
|
static IPluginV2 |
nvinfer_plugin.createNMSPlugin(DetectionOutputParameters param)
\brief The DetectionOutput plugin layer generates the detection output based on location and confidence
predictions by doing non maximum suppression.
|
static IPluginV2 |
nvinfer_plugin.createNormalizePlugin(Weights scales,
boolean acrossSpatial,
boolean channelShared,
float eps)
\brief The Normalize plugin layer normalizes the input to have L2 norm of 1 with scale learnable.
|
static IPluginV2 |
nvinfer_plugin.createNormalizePlugin(Weights scales,
boolean acrossSpatial,
boolean channelShared,
float eps)
\brief The Normalize plugin layer normalizes the input to have L2 norm of 1 with scale learnable.
|
static IPluginV2 |
nvinfer_plugin.createPriorBoxPlugin(PriorBoxParameters param)
\brief The PriorBox plugin layer generates the prior boxes of designated sizes and aspect ratios across all
dimensions (H x W).
|
static IPluginV2 |
nvinfer_plugin.createPriorBoxPlugin(PriorBoxParameters param)
\brief The PriorBox plugin layer generates the prior boxes of designated sizes and aspect ratios across all
dimensions (H x W).
|
static IPluginV2 |
nvinfer_plugin.createRegionPlugin(RegionParameters params)
\brief The Region plugin layer performs region proposal calculation: generate 5 bounding boxes per cell (for
yolo9000, generate 3 bounding boxes per cell).
|
static IPluginV2 |
nvinfer_plugin.createRegionPlugin(RegionParameters params)
\brief The Region plugin layer performs region proposal calculation: generate 5 bounding boxes per cell (for
yolo9000, generate 3 bounding boxes per cell).
|
static IPluginV2 |
nvinfer_plugin.createReorgPlugin(int stride)
\brief The Reorg plugin reshapes input of shape CxHxW into a (C*stride*stride)x(H/stride)x(W/stride) shape, used
in YOLOv2.
|
static IPluginV2 |
nvinfer_plugin.createReorgPlugin(int stride)
\brief The Reorg plugin reshapes input of shape CxHxW into a (C*stride*stride)x(H/stride)x(W/stride) shape, used
in YOLOv2.
|
static IPluginV2 |
nvinfer_plugin.createRPNROIPlugin(int featureStride,
int preNmsTop,
int nmsMaxOut,
float iouThreshold,
float minBoxSize,
float spatialScale,
DimsHW pooling,
Weights anchorRatios,
Weights anchorScales)
\brief Create a plugin layer that fuses the RPN and ROI pooling using user-defined parameters.
|
static IPluginV2 |
nvinfer_plugin.createRPNROIPlugin(int featureStride,
int preNmsTop,
int nmsMaxOut,
float iouThreshold,
float minBoxSize,
float spatialScale,
DimsHW pooling,
Weights anchorRatios,
Weights anchorScales)
\brief Create a plugin layer that fuses the RPN and ROI pooling using user-defined parameters.
|
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
int[] output_lengths,
int noutput) |
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
int[] output_lengths,
int noutput) |
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
IntBuffer output_lengths,
int noutput) |
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
IntBuffer output_lengths,
int noutput) |
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
IntPointer output_lengths,
int noutput)
\brief The Split Plugin performs a split operation on the input tensor.
|
static IPluginV2 |
nvinfer_plugin.createSplitPlugin(int axis,
IntPointer output_lengths,
int noutput)
\brief The Split Plugin performs a split operation on the input tensor.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IPluginV2DynamicExt
\class IPluginV2DynamicExt
Similar to IPluginV2Ext, but with support for dynamic shapes.
|
class |
IPluginV2Ext
\class IPluginV2Ext
\brief Plugin class for user-implemented layers.
|
class |
IPluginV2IOExt
\class IPluginV2IOExt
\brief Plugin class for user-implemented layers.
|
| Modifier and Type | Method and Description |
|---|---|
IPluginV2 |
IPluginV2.clone()
\brief Clone the plugin object.
|
IPluginV2 |
IPluginV2.clone()
\brief Clone the plugin object.
|
IPluginV2 |
IPluginCreator.createPlugin(BytePointer name,
PluginFieldCollection fc) |
IPluginV2 |
IPluginCreator.createPlugin(BytePointer name,
PluginFieldCollection fc) |
IPluginV2 |
IPluginCreator.createPlugin(String name,
PluginFieldCollection fc)
\brief Return a plugin object.
|
IPluginV2 |
IPluginCreator.createPlugin(String name,
PluginFieldCollection fc)
\brief Return a plugin object.
|
IPluginV2 |
IPluginCreator.deserializePlugin(BytePointer name,
Pointer serialData,
long serialLength) |
IPluginV2 |
IPluginCreator.deserializePlugin(BytePointer name,
Pointer serialData,
long serialLength) |
IPluginV2 |
IPluginCreator.deserializePlugin(String name,
Pointer serialData,
long serialLength)
\brief Called during deserialization of plugin layer.
|
IPluginV2 |
IPluginCreator.deserializePlugin(String name,
Pointer serialData,
long serialLength)
\brief Called during deserialization of plugin layer.
|
IPluginV2 |
IPluginV2Layer.getPlugin()
\brief Get the plugin for the layer.
|
IPluginV2 |
VPluginV2Layer.getPlugin() |
IPluginV2 |
VPluginV2Layer.getPlugin() |
IPluginV2 |
IPluginV2Layer.getPlugin()
\brief Get the plugin for the layer.
|
| Modifier and Type | Method and Description |
|---|---|
IPluginV2Layer |
INetworkDefinition.addPluginV2(ITensor inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
VNetworkDefinition.addPluginV2(ITensor inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
VNetworkDefinition.addPluginV2(ITensor inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
INetworkDefinition.addPluginV2(ITensor inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
INetworkDefinition.addPluginV2(PointerPointer inputs,
int nbInputs,
IPluginV2 plugin)
\brief Add a plugin layer to the network using the IPluginV2 interface.
|
IPluginV2Layer |
VNetworkDefinition.addPluginV2(PointerPointer inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
VNetworkDefinition.addPluginV2(PointerPointer inputs,
int nbInputs,
IPluginV2 plugin) |
IPluginV2Layer |
INetworkDefinition.addPluginV2(PointerPointer inputs,
int nbInputs,
IPluginV2 plugin)
\brief Add a plugin layer to the network using the IPluginV2 interface.
|
| Modifier and Type | Method and Description |
|---|---|
IPluginV2 |
IPluginFactoryV2.createPlugin(BytePointer layerName,
Weights weights,
int nbWeights) |
IPluginV2 |
IPluginFactoryV2.createPlugin(BytePointer layerName,
Weights weights,
int nbWeights) |
IPluginV2 |
IPluginFactoryV2.createPlugin(BytePointer layerName,
Weights weights,
int nbWeights,
BytePointer libNamespace) |
IPluginV2 |
IPluginFactoryV2.createPlugin(BytePointer layerName,
Weights weights,
int nbWeights,
BytePointer libNamespace) |
IPluginV2 |
IPluginFactoryV2.createPlugin(String layerName,
Weights weights,
int nbWeights) |
IPluginV2 |
IPluginFactoryV2.createPlugin(String layerName,
Weights weights,
int nbWeights) |
IPluginV2 |
IPluginFactoryV2.createPlugin(String layerName,
Weights weights,
int nbWeights,
String libNamespace)
\brief Creates a plugin.
|
IPluginV2 |
IPluginFactoryV2.createPlugin(String layerName,
Weights weights,
int nbWeights,
String libNamespace)
\brief Creates a plugin.
|
Copyright © 2022. All rights reserved.