#[repr(C)]pub struct dv_endpoint_dram_statistics {
pub ep: *mut dv_endpoint_t,
pub ep_total_dram_size: u64,
pub ep_total_dram_occupancy_size: u64,
pub ep_total_free_size: u64,
pub ep_total_reserved_occupancy_size: u64,
pub ep_total_model_occupancy_size: u64,
pub ep_total_tensor_occupancy_size: u64,
}Fields§
§ep: *mut dv_endpoint_t< endpoint handle
ep_total_dram_size: u64< endpoint dram size in bytes
ep_total_dram_occupancy_size: u64< endpoint dram memory occupied in bytes
ep_total_free_size: u64< endpoint dram memory free in bytes
ep_total_reserved_occupancy_size: u64< endpoint dram reserved memory in bytes for firmware
ep_total_model_occupancy_size: u64< endpoint dram memory occupied by all the active model artefacts in bytes
ep_total_tensor_occupancy_size: u64< endpoint dram memory occupied by all the active model tensors in bytes
Trait Implementations§
Source§impl Clone for dv_endpoint_dram_statistics
impl Clone for dv_endpoint_dram_statistics
Source§fn clone(&self) -> dv_endpoint_dram_statistics
fn clone(&self) -> dv_endpoint_dram_statistics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for dv_endpoint_dram_statistics
impl Debug for dv_endpoint_dram_statistics
impl Copy for dv_endpoint_dram_statistics
Auto Trait Implementations§
impl Freeze for dv_endpoint_dram_statistics
impl RefUnwindSafe for dv_endpoint_dram_statistics
impl !Send for dv_endpoint_dram_statistics
impl !Sync for dv_endpoint_dram_statistics
impl Unpin for dv_endpoint_dram_statistics
impl UnsafeUnpin for dv_endpoint_dram_statistics
impl UnwindSafe for dv_endpoint_dram_statistics
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