tvm
|
Top-level metadata structure. Holds all other metadata types. More...
#include <metadata_types.h>
Public Attributes | |
int64_t | version |
Version identifier for this metadata. More... | |
const struct TVMTensorInfo * | inputs |
Inputs to the AOT run_model function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the first num_inputs arguments to run_model. More... | |
int64_t | num_inputs |
Number of elements in inputs array. More... | |
const struct TVMTensorInfo * | outputs |
Outputs of the AOT run_model function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the last num_outputs arguments to run_model. More... | |
int64_t | num_outputs |
Number of elements in outputs array. More... | |
const struct TVMTensorInfo * | workspace_pools |
Workspace Memory Pools needed by the AOT main function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the last num_workspace_pools arguments to run_model. More... | |
int64_t | num_workspace_pools |
Number of elements in workspace_pools array. More... | |
const struct TVMConstantInfo * | constant_pools |
Constant pools needed by the AOT main function. More... | |
int64_t | num_constant_pools |
Number of elements in constant_pools array. More... | |
const char * | mod_name |
Name of the model, as passed to tvm.relay.build. More... | |
Top-level metadata structure. Holds all other metadata types.
const struct TVMConstantInfo* TVMMetadata::constant_pools |
Constant pools needed by the AOT main function.
const struct TVMTensorInfo* TVMMetadata::inputs |
Inputs to the AOT run_model function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the first num_inputs
arguments to run_model.
const char* TVMMetadata::mod_name |
Name of the model, as passed to tvm.relay.build.
int64_t TVMMetadata::num_constant_pools |
Number of elements in constant_pools
array.
int64_t TVMMetadata::num_inputs |
Number of elements in inputs
array.
int64_t TVMMetadata::num_outputs |
Number of elements in outputs
array.
int64_t TVMMetadata::num_workspace_pools |
Number of elements in workspace_pools
array.
const struct TVMTensorInfo* TVMMetadata::outputs |
Outputs of the AOT run_model function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the last num_outputs
arguments to run_model.
int64_t TVMMetadata::version |
Version identifier for this metadata.
const struct TVMTensorInfo* TVMMetadata::workspace_pools |
Workspace Memory Pools needed by the AOT main function. The order of the elements is the same as in the arguments to run_model. That is to say, this array specifies the last num_workspace_pools
arguments to run_model.