\brief Set the multi-dimension pre-padding of the deconvolution. The output will be trimmed by this number of elements on the start 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 getPrePadding()
| 2679 | //! \see getPrePadding() |
| 2680 | //! |
| 2681 | void setPrePadding(Dims padding) noexcept |
| 2682 | { |
| 2683 | mImpl->setPrePadding(padding); |
| 2684 | } |
| 2685 | |
| 2686 | //! |
| 2687 | //! \brief Get the pre-padding. |
nothing calls this directly
no test coverage detected