\brief Set the output tensor's dimensions. \param dimensions The output tensor's dimensions. If the first input had been used to create this layer, that input is reset to null by this method. \see getDimensions
| 5861 | //! \see getDimensions |
| 5862 | // |
| 5863 | void setDimensions(Dims dimensions) noexcept |
| 5864 | { |
| 5865 | mImpl->setDimensions(dimensions); |
| 5866 | } |
| 5867 | |
| 5868 | //! |
| 5869 | //! \brief Get the output tensor's dimensions. |
nothing calls this directly
no test coverage detected