tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Attributes | List of all members
TVMMetadata Struct Reference

Top-level metadata structure. Holds all other metadata types. More...

#include <metadata_types.h>

Collaboration diagram for TVMMetadata:

Public Attributes

int64_t version
 Version identifier for this metadata. More...
 
const struct TVMTensorInfoinputs
 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 TVMTensorInfooutputs
 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 TVMTensorInfoworkspace_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 TVMConstantInfoconstant_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...
 

Detailed Description

Top-level metadata structure. Holds all other metadata types.

Member Data Documentation

◆ constant_pools

const struct TVMConstantInfo* TVMMetadata::constant_pools

Constant pools needed by the AOT main function.

◆ inputs

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.

◆ mod_name

const char* TVMMetadata::mod_name

Name of the model, as passed to tvm.relay.build.

◆ num_constant_pools

int64_t TVMMetadata::num_constant_pools

Number of elements in constant_pools array.

◆ num_inputs

int64_t TVMMetadata::num_inputs

Number of elements in inputs array.

◆ num_outputs

int64_t TVMMetadata::num_outputs

Number of elements in outputs array.

◆ num_workspace_pools

int64_t TVMMetadata::num_workspace_pools

Number of elements in workspace_pools array.

◆ outputs

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.

◆ version

int64_t TVMMetadata::version

Version identifier for this metadata.

◆ workspace_pools

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.


The documentation for this struct was generated from the following file: