\brief Set the multi-dimension post-padding of the deconvolution. The output will be trimmed by this number of elements on the end of every dimension. In other words, it resembles the inverse of a convolution layer with this padding size. Negative padding is not supported. Default: (0, 0, ..., 0) If executing this layer on DLA, padding must be 0. \see getPostPadding()
| 2707 | //! \see getPostPadding() |
| 2708 | //! |
| 2709 | void setPostPadding(Dims padding) noexcept |
| 2710 | { |
| 2711 | mImpl->setPostPadding(padding); |
| 2712 | } |
| 2713 | |
| 2714 | //! |
| 2715 | //! \brief Get the padding. |
nothing calls this directly
no test coverage detected