pub type NNModel = c_void;Expand description
@struct NNModel
DeepViewRT Models “RTM” are reprensted in memory through the NNModel type which is meant to point to a static model blob. This can point directly to the memory of the RTM either loaded into memory, accessed through a memmap or pointed directly to the flash location. In other words if the RTM is saved into flash which is connected to the memory space then the model does not need to be copied into RAM before being loaded.
Models are loaded into an @ref NNContext which handles the dynamic data structures required for operation of the model.
Aliased Type§
#[repr(u8)]pub enum NNModel {}