\brief Retrieve the name corresponding to a binding index. This is the reverse mapping to that provided by getBindingIndex(). For optimization profiles with an index k > 0, the name is mangled by appending " [profile k]", with k written in decimal. For example, if the tensor in the INetworkDefinition had the name "foo", and bindingIndex refers to that tensor in the optimization profile with ind
| 1608 | //! \see getBindingIndex() |
| 1609 | //! |
| 1610 | TRT_DEPRECATED char const* getBindingName(int32_t bindingIndex) const noexcept |
| 1611 | { |
| 1612 | return mImpl->getBindingName(bindingIndex); |
| 1613 | } |
| 1614 | |
| 1615 | //! |
| 1616 | //! \brief Determine whether a binding is an input binding. |
no outgoing calls
no test coverage detected