MCPcopy Create free account
hub / github.com/Open-Quant/openquant / HpcParallelMetrics

Class HpcParallelMetrics

crates/openquant/src/hpc_parallel.rs:74–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73#[derive(Debug, Clone, PartialEq)]
74pub struct HpcParallelMetrics {
75 pub atoms_total: usize,
76 pub molecules_total: usize,
77 pub runtime: Duration,
78 pub throughput_atoms_per_sec: f64,
79 pub throughput_molecules_per_sec: f64,
80 /// max molecule size divided by mean molecule size.
81 pub partition_imbalance_ratio: f64,
82 pub progress: Vec<ProgressSnapshot>,
83}
84
85#[derive(Debug, Clone, PartialEq)]
86pub struct ParallelRunReport<R> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected