tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
graph_executor.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
24 #ifndef TVM_RUNTIME_CRT_GRAPH_EXECUTOR_H_
25 #define TVM_RUNTIME_CRT_GRAPH_EXECUTOR_H_
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 #include <dlpack/dlpack.h>
34 
35 struct TVMModule;
36 
38 typedef struct TVMOpParam {
39  char func_name[TVM_CRT_MAX_STRLEN_FUNCTION_NAME];
40  uint32_t num_inputs;
41  uint32_t num_outputs;
42  uint32_t flatten_data;
44 
45 // Graph attribute
46 typedef struct TVMGraphExecutorGraphAttr {
48  uint32_t* storage_id;
49  uint32_t* device_index;
50  char* dltype; // "int8", "int16", "float32"
51  uint32_t dltype_count;
52  int64_t* shape;
53  uint32_t* ndim;
54  uint32_t shape_count;
56 
57 typedef struct TVMGraphExecutor TVMGraphExecutor;
58 
59 // public functions
69 int TVMGraphExecutor_Create(const char* sym_json, TVMModuleHandle module_handle,
70  const DLDevice* devices, TVMGraphExecutor** executor);
71 
72 int TVMGraphExecutor_GetInputIndex(TVMGraphExecutor* executor, const char* name);
73 
79 
86 void TVMGraphExecutor_SetInput(TVMGraphExecutor* executor, const char* name, DLTensor* data_in);
87 
93 
101 int TVMGraphExecutor_GetOutput(TVMGraphExecutor* executor, const int32_t index, DLTensor* out);
102 
110 int TVMGraphExecutor_LoadParams(TVMGraphExecutor* executor, const char* param_blob,
111  const uint32_t param_size);
112 
118 
125 
126 #ifdef __cplusplus
127 } // extern "C"
128 #endif
129 
130 #endif // TVM_RUNTIME_CRT_GRAPH_EXECUTOR_H_
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