\brief Set the padding that is applied at the end of the tensor. Negative padding results in trimming the edge by the specified amount \see getPostPadding \deprecated Superseded by setPostPaddingNd. Deprecated prior to TensorRT 8.0 and will be removed in 9.0
| 3909 | //! \deprecated Superseded by setPostPaddingNd. Deprecated prior to TensorRT 8.0 and will be removed in 9.0 |
| 3910 | //! |
| 3911 | TRT_DEPRECATED void setPostPadding(DimsHW padding) noexcept |
| 3912 | { |
| 3913 | mImpl->setPostPadding(padding); |
| 3914 | } |
| 3915 | |
| 3916 | //! |
| 3917 | //! \brief Get the padding that is applied at the end of the tensor. |
nothing calls this directly
no test coverage detected