tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
microtvm_runtime.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 
20 #ifndef TVM_RUNTIME_MICRO_STANDALONE_MICROTVM_RUNTIME_H_
21 #define TVM_RUNTIME_MICRO_STANDALONE_MICROTVM_RUNTIME_H_
22 
23 #include <stddef.h>
24 #include <stdint.h>
25 
26 #define TVM_MICRO_RUNTIME_API_API extern "C" __attribute__((visibility("default")))
27 
28 TVM_MICRO_RUNTIME_API_API void* MicroTVMRuntimeCreate(const char* json, size_t json_len,
29  void* module);
30 
32 
33 TVM_MICRO_RUNTIME_API_API void MicroTVMRuntimeSetInput(void* handle, int index, void* tensor);
34 
36 
37 TVM_MICRO_RUNTIME_API_API void MicroTVMRuntimeGetOutput(void* handle, int index, void* tensor);
38 
39 TVM_MICRO_RUNTIME_API_API void* MicroTVMRuntimeDSOModuleCreate(const char* so, size_t so_len);
40 
42 
43 #undef TVM_MICRO_RUNTIME_API_API
44 
45 #endif // TVM_RUNTIME_MICRO_STANDALONE_MICROTVM_RUNTIME_H_
void MicroTVMRuntimeDestroy(void *handle)
void MicroTVMRuntimeGetOutput(void *handle, int index, void *tensor)
void MicroTVMRuntimeDSOModuleDestroy(void *module)
#define TVM_MICRO_RUNTIME_API_API
Definition: microtvm_runtime.h:26
void MicroTVMRuntimeSetInput(void *handle, int index, void *tensor)
void MicroTVMRuntimeRun(void *handle)
void * MicroTVMRuntimeCreate(const char *json, size_t json_len, void *module)
void * MicroTVMRuntimeDSOModuleCreate(const char *so, size_t so_len)