\brief Set the multi-dimension post-padding of the convolution. The end of the input will be zero-padded by this number of elements in each dimension. Default: (0, 0, ..., 0) If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range [0,31], and the padding must be less than the kernel size. \see getPostPadding()
| 1322 | //! \see getPostPadding() |
| 1323 | //! |
| 1324 | void setPostPadding(Dims padding) noexcept |
| 1325 | { |
| 1326 | mImpl->setPostPadding(padding); |
| 1327 | } |
| 1328 | |
| 1329 | //! |
| 1330 | //! \brief Get the post-padding. |
nothing calls this directly
no test coverage detected