\brief Determine whether a binding is an input binding. \param bindingIndex The binding index. \return True if the index corresponds to an input binding and the index is in range. \deprecated Deprecated in TensorRT 8.5. Superseded by getTensorIOMode(). \see getTensorIOMode()
| 1623 | //! \see getTensorIOMode() |
| 1624 | //! |
| 1625 | TRT_DEPRECATED bool bindingIsInput(int32_t bindingIndex) const noexcept |
| 1626 | { |
| 1627 | return mImpl->bindingIsInput(bindingIndex); |
| 1628 | } |
| 1629 | |
| 1630 | //! |
| 1631 | //! \brief Get the dimensions of a binding. |
no outgoing calls
no test coverage detected