pub struct TensorStatsComparisonRow {
pub label: String,
pub rms_a: f64,
pub rms_b: f64,
pub rms_ratio: Option<f64>,
pub abs_max_ratio: Option<f64>,
pub non_finite_a: u64,
pub non_finite_b: u64,
pub samples_a: usize,
pub samples_b: usize,
pub runs_a: usize,
pub runs_b: usize,
}Fields§
§label: String§rms_a: f64§rms_b: f64§rms_ratio: Option<f64>§abs_max_ratio: Option<f64>§non_finite_a: u64§non_finite_b: u64§samples_a: usizeEvents averaged into rms_a/abs_max for this label (duplicates included).
samples_b: usize§runs_a: usizeCohort runs that contained this label; compare against the cohort run totals to see whether an average covers the whole cohort or only part of it.
runs_b: usizeTrait Implementations§
Source§impl Clone for TensorStatsComparisonRow
impl Clone for TensorStatsComparisonRow
Source§fn clone(&self) -> TensorStatsComparisonRow
fn clone(&self) -> TensorStatsComparisonRow
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 moreSource§impl Debug for TensorStatsComparisonRow
impl Debug for TensorStatsComparisonRow
Source§impl<'de> Deserialize<'de> for TensorStatsComparisonRow
impl<'de> Deserialize<'de> for TensorStatsComparisonRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TensorStatsComparisonRow
impl PartialEq for TensorStatsComparisonRow
Source§impl Serialize for TensorStatsComparisonRow
impl Serialize for TensorStatsComparisonRow
impl StructuralPartialEq for TensorStatsComparisonRow
Auto Trait Implementations§
impl Freeze for TensorStatsComparisonRow
impl RefUnwindSafe for TensorStatsComparisonRow
impl Send for TensorStatsComparisonRow
impl Sync for TensorStatsComparisonRow
impl Unpin for TensorStatsComparisonRow
impl UnsafeUnpin for TensorStatsComparisonRow
impl UnwindSafe for TensorStatsComparisonRow
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
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