Struct executorch_sys::torch::executor::MemoryManager
source · #[repr(C)]pub struct MemoryManager {
pub method_allocator_: *mut MemoryAllocator,
pub planned_memory_: *mut HierarchicalAllocator,
pub temp_allocator_: *mut MemoryAllocator,
}Expand description
A container class for allocators used during Method load and execution.
This class consolidates all dynamic memory needs for Method load and execution. This can allow for heap-based as well as heap-less execution (relevant to some embedded scenarios), and overall provides more control over memory use.
This class, however, cannot ensure all allocation is accounted for since kernel and backend implementations are free to use a separate way to allocate memory (e.g., for things like scratch space). But we do suggest that backends and kernels use these provided allocators whenever possible.
Fields§
§method_allocator_: *mut MemoryAllocator§planned_memory_: *mut HierarchicalAllocator§temp_allocator_: *mut MemoryAllocatorTrait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryManager
impl RefUnwindSafe for MemoryManager
impl !Send for MemoryManager
impl !Sync for MemoryManager
impl Unpin for MemoryManager
impl UnwindSafe for MemoryManager
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more