\brief Determine the required data type for a buffer from its binding index. \param bindingIndex The binding index. \return The type of the data in the buffer. \deprecated Deprecated in TensorRT 8.5. Superseded by getTensorDataType(). \see getTensorDataType()
| 1680 | //! \see getTensorDataType() |
| 1681 | //! |
| 1682 | TRT_DEPRECATED DataType getBindingDataType(int32_t bindingIndex) const noexcept |
| 1683 | { |
| 1684 | return mImpl->getBindingDataType(bindingIndex); |
| 1685 | } |
| 1686 | |
| 1687 | //! |
| 1688 | //! \brief Determine the required data type for a buffer from its tensor name. |
no outgoing calls
no test coverage detected