d-smirnov commented on code in PR #10189:
URL: https://github.com/apache/tvm/pull/10189#discussion_r897861306
##########
include/tvm/runtime/metadata_types.h:
##########
@@ -82,6 +87,21 @@ struct TVMTensorInfo {
DLDataType dtype;
};
+/*!
+ * \brief Describes one constant argument to `run_model`.
+ *
+ */
+struct TVMConstantInfo {
+ /*! \brief Name of the constant */
+ const char* name_hint;
+ /*! \brief Offset in bytes of the constant */
+ int64_t byte_offset;
+ /*! \brief lenght of the data_bytes field */
Review Comment:
amended
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]