\brief Return the dimension index that the buffer is vectorized, or -1 is the name is not found. Specifically -1 is returned if scalars per vector is 1. \param bindingIndex The binding Index. \deprecated Deprecated in TensorRT 8.5. Superseded by getTensorVectorizedDim(). \see getTensorVectorizedDim()
| 2107 | //! \see getTensorVectorizedDim() |
| 2108 | //! |
| 2109 | TRT_DEPRECATED int32_t getBindingVectorizedDim(int32_t bindingIndex) const noexcept |
| 2110 | { |
| 2111 | return mImpl->getBindingVectorizedDim(bindingIndex); |
| 2112 | } |
| 2113 | |
| 2114 | //! |
| 2115 | //! \brief Return the dimension index that the buffer is vectorized, or -1 if the provided name does not |
no outgoing calls
no test coverage detected