\brief Return the number of components included in one element. The number of elements in the vectors is returned if getBindingVectorizedDim() != -1. \param bindingIndex The binding Index. \deprecated Deprecated in TensorRT 8.5. Superseded by getTensorComponentsPerElement(). \see getBindingVectorizedDim()
| 1938 | //! \see getBindingVectorizedDim() |
| 1939 | //! |
| 1940 | TRT_DEPRECATED int32_t getBindingComponentsPerElement(int32_t bindingIndex) const noexcept |
| 1941 | { |
| 1942 | return mImpl->getBindingComponentsPerElement(bindingIndex); |
| 1943 | } |
| 1944 | |
| 1945 | //! |
| 1946 | //! \brief Return the number of components included in one element, or -1 if the provided name does not map to an |
no outgoing calls
no test coverage detected