pub struct DistributedStats {
pub worker_stats: HashMap<usize, SpacerStats>,
pub total_work_items: u64,
pub total_lemmas: u64,
pub work_stealing_events: u64,
pub sync_events: u64,
pub messages_sent: u64,
}Expand description
Statistics for distributed solving
Fields§
§worker_stats: HashMap<usize, SpacerStats>Per-worker statistics
total_work_items: u64Total work items processed
total_lemmas: u64Total lemmas learned
work_stealing_events: u64Work stealing events
sync_events: u64Synchronization events
messages_sent: u64Communication overhead (messages sent)
Implementations§
Source§impl DistributedStats
impl DistributedStats
Sourcepub fn aggregate(&self) -> SpacerStats
pub fn aggregate(&self) -> SpacerStats
Aggregate statistics from all workers
Trait Implementations§
Source§impl Clone for DistributedStats
impl Clone for DistributedStats
Source§fn clone(&self) -> DistributedStats
fn clone(&self) -> DistributedStats
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 DistributedStats
impl Debug for DistributedStats
Source§impl Default for DistributedStats
impl Default for DistributedStats
Source§fn default() -> DistributedStats
fn default() -> DistributedStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DistributedStats
impl RefUnwindSafe for DistributedStats
impl Send for DistributedStats
impl Sync for DistributedStats
impl Unpin for DistributedStats
impl UnsafeUnpin for DistributedStats
impl UnwindSafe for DistributedStats
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more