pub struct ParallelHdf5Meta {
pub n_ranks: usize,
pub rank_byte_counts: Vec<u64>,
pub collective_metadata: bool,
pub lock_held: bool,
}Expand description
Simulated parallel HDF5 (PHDF5) metadata for a multi-rank write.
Fields§
§n_ranks: usizeTotal number of MPI ranks.
rank_byte_counts: Vec<u64>Per-rank byte counts.
collective_metadata: boolWhether collective metadata writes are enabled.
lock_held: boolPOSIX advisory lock held during the collective operation.
Implementations§
Source§impl ParallelHdf5Meta
impl ParallelHdf5Meta
Sourcepub fn record_rank_bytes(&mut self, rank: usize, bytes: u64)
pub fn record_rank_bytes(&mut self, rank: usize, bytes: u64)
Record the number of bytes written by rank rank.
Sourcepub fn total_bytes(&self) -> u64
pub fn total_bytes(&self) -> u64
Total bytes across all ranks.
Trait Implementations§
Source§impl Clone for ParallelHdf5Meta
impl Clone for ParallelHdf5Meta
Source§fn clone(&self) -> ParallelHdf5Meta
fn clone(&self) -> ParallelHdf5Meta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParallelHdf5Meta
impl RefUnwindSafe for ParallelHdf5Meta
impl Send for ParallelHdf5Meta
impl Sync for ParallelHdf5Meta
impl Unpin for ParallelHdf5Meta
impl UnsafeUnpin for ParallelHdf5Meta
impl UnwindSafe for ParallelHdf5Meta
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.