\brief Set memory address for given input or output tensor. \param tensorName The name of an input or output tensor. \param data The pointer (void*) to the data owned by the user. \return True on success, false if error occurred. An address defaults to nullptr. Pass data=nullptr to reset to the default state. Return false if the provided name does not map to an input or output tensor. If an i
| 3243 | //! \see setInputTensorAddress() getTensorShape() setOutputAllocator() IOutputAllocator |
| 3244 | //! |
| 3245 | bool setTensorAddress(char const* tensorName, void* data) noexcept |
| 3246 | { |
| 3247 | return mImpl->setTensorAddress(tensorName, data); |
| 3248 | } |
| 3249 | |
| 3250 | //! |
| 3251 | //! \brief Get memory address bound to given input or output tensor, or nullptr if the provided name does not map to |
no outgoing calls
no test coverage detected