24 #ifndef TVM_RUNTIME_CRT_GRAPH_EXECUTOR_H_
25 #define TVM_RUNTIME_CRT_GRAPH_EXECUTOR_H_
31 #include <dlpack/dlpack.h>
111 const uint32_t param_size);
void * TVMModuleHandle
Handle to TVM runtime modules.
Definition: c_runtime_api.h:227
Type-erased function used across TVM API.
struct TVMGraphExecutorGraphAttr TVMGraphExecutorGraphAttr
int TVMGraphExecutor_LoadParams(TVMGraphExecutor *executor, const char *param_blob, const uint32_t param_size)
Load parameters from parameter blob.
int TVMGraphExecutor_GetNumInputs()
get number of input tensors allocated.
void TVMGraphExecutor_SetInput(TVMGraphExecutor *executor, const char *name, DLTensor *data_in)
set input to the graph based on name.
struct TVMOpParam TVMOpParam
operator attributes about tvm op
int TVMGraphExecutor_GetOutput(TVMGraphExecutor *executor, const int32_t index, DLTensor *out)
Return NDArray for given output index.
struct TVMGraphExecutor TVMGraphExecutor
Definition: graph_executor.h:57
int TVMGraphExecutor_GetInputIndex(TVMGraphExecutor *executor, const char *name)
int TVMGraphExecutor_Create(const char *sym_json, TVMModuleHandle module_handle, const DLDevice *devices, TVMGraphExecutor **executor)
Allocate a new GraphExecutor with TVMPlatformMemoryAllocate and initialize it.
int TVMGraphExecutor_GetNumOutputs()
get number of output tensors allocated.
void TVMGraphExecutor_Run(TVMGraphExecutor *executor)
Execute the graph.
int TVMGraphExecutor_Release(TVMGraphExecutor **executor)
Release memory associated with the graph executor.
Definition: graph_executor.h:46
uint32_t shape_count
Definition: graph_executor.h:54
uint32_t dltype_count
Definition: graph_executor.h:51
int64_t * shape
Definition: graph_executor.h:52
uint32_t * storage_id
Definition: graph_executor.h:48
uint32_t * ndim
Definition: graph_executor.h:53
uint32_t storage_num_not_alloctaed
Definition: graph_executor.h:47
uint32_t * device_index
Definition: graph_executor.h:49
char * dltype
Definition: graph_executor.h:50
Module container of TVM.
Definition: module.h:37
operator attributes about tvm op
Definition: graph_executor.h:38
uint32_t flatten_data
Definition: graph_executor.h:42
char func_name[TVM_CRT_MAX_STRLEN_FUNCTION_NAME]
Definition: graph_executor.h:39
uint32_t num_inputs
Definition: graph_executor.h:40
uint32_t num_outputs
Definition: graph_executor.h:41