pub struct MeshStats {
pub world_size: usize,
pub total_memory_mb: u64,
pub total_compute_units: u32,
pub backend_distribution: HashMap<String, usize>,
pub group_count: usize,
}Expand description
Statistics about the device mesh
Fields§
§world_size: usize§total_memory_mb: u64§total_compute_units: u32§backend_distribution: HashMap<String, usize>§group_count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for MeshStats
impl RefUnwindSafe for MeshStats
impl Send for MeshStats
impl Sync for MeshStats
impl Unpin for MeshStats
impl UnsafeUnpin for MeshStats
impl UnwindSafe for MeshStats
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