\brief Get the dimensions of a binding. \param bindingIndex The binding index. \return The dimensions of the binding if the index is in range, otherwise Dims(). Has -1 for any dimension that varies within the optimization profile. For example, suppose an INetworkDefinition has an input with shape [-1,-1] that becomes a binding b in the engine. If the associated optimization profile specifies th
| 1650 | //! \see getTensorShape() |
| 1651 | //! |
| 1652 | TRT_DEPRECATED Dims getBindingDimensions(int32_t bindingIndex) const noexcept |
| 1653 | { |
| 1654 | return mImpl->getBindingDimensions(bindingIndex); |
| 1655 | } |
| 1656 | |
| 1657 | //! |
| 1658 | //! \brief Get shape of an input or output tensor. |
no outgoing calls
no test coverage detected