|
oveRTOS C API
Embedded RTOS framework — build system, configuration, and portable C API
|
Configuration for an ML inference session. More...
#include <infer.h>
Data Fields | |
| const void * | model_data |
| size_t | model_size |
| size_t | arena_size |
Configuration for an ML inference session.
model_data must point to a valid .tflite FlatBuffer. It is typically embedded as a const C array compiled into flash. arena_size controls how much memory is reserved for intermediate tensors; the actual requirement depends on the model.
| const void* ove_model_config::model_data |
Pointer to .tflite FlatBuffer data.
| size_t ove_model_config::model_size |
Size of model_data in bytes.
| size_t ove_model_config::arena_size |
Tensor arena size in bytes.