#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
◆ TVM_MICRO_RUNTIME_API_API
#define TVM_MICRO_RUNTIME_API_API extern "C" __attribute__((visibility("default"))) |
◆ MicroTVMRuntimeCreate()
void* MicroTVMRuntimeCreate |
( |
const char * |
json, |
|
|
size_t |
json_len, |
|
|
void * |
module |
|
) |
| |
◆ MicroTVMRuntimeDestroy()
void MicroTVMRuntimeDestroy |
( |
void * |
handle | ) |
|
◆ MicroTVMRuntimeDSOModuleCreate()
void* MicroTVMRuntimeDSOModuleCreate |
( |
const char * |
so, |
|
|
size_t |
so_len |
|
) |
| |
◆ MicroTVMRuntimeDSOModuleDestroy()
void MicroTVMRuntimeDSOModuleDestroy |
( |
void * |
module | ) |
|
◆ MicroTVMRuntimeGetOutput()
void MicroTVMRuntimeGetOutput |
( |
void * |
handle, |
|
|
int |
index, |
|
|
void * |
tensor |
|
) |
| |
◆ MicroTVMRuntimeRun()
void MicroTVMRuntimeRun |
( |
void * |
handle | ) |
|
◆ MicroTVMRuntimeSetInput()
void MicroTVMRuntimeSetInput |
( |
void * |
handle, |
|
|
int |
index, |
|
|
void * |
tensor |
|
) |
| |