MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / addDeconvolutionNd

Method addDeconvolutionNd

include/NvInfer.h:7820–7824  ·  view source on GitHub ↗

\brief Add a multi-dimension deconvolution layer to the network. \param input The input tensor to the layer. \param nbOutputMaps The number of output feature maps. \param kernelSize The multi-dimensions of the deconvolution kernel. \param kernelWeights The kernel weights for the deconvolution. \param biasWeights The bias weights for the deconvolution. Weights{} represents no bias. \see IDeconvol

Source from the content-addressed store, hash-verified

7818 //! \return The new deconvolution layer, or nullptr if it could not be created.
7819 //!
7820 IDeconvolutionLayer* addDeconvolutionNd(
7821 ITensor& input, int32_t nbOutputMaps, Dims kernelSize, Weights kernelWeights, Weights biasWeights) noexcept
7822 {
7823 return mImpl->addDeconvolutionNd(input, nbOutputMaps, kernelSize, kernelWeights, biasWeights);
7824 }
7825
7826 //!
7827 //! \brief Add a multi-dimension scale layer to the network.

Callers 1

pyGraph.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected