pub struct ValidationSummary<T: InterpolationFloat> {
pub total_tests: usize,
pub passed_tests: usize,
pub failed_tests: usize,
pub overall_success_rate: f64,
pub average_speedup: f64,
pub max_speedup: f64,
pub min_speedup: f64,
pub platform_info: ValidationSession,
pub detailed_results: Vec<ValidationResult<T>>,
pub validation_duration: Duration,
}
Expand description
Comprehensive validation summary
Fields§
§total_tests: usize
Total number of tests run
passed_tests: usize
Number of tests that passed correctness validation
failed_tests: usize
Number of tests that failed correctness validation
overall_success_rate: f64
Overall success rate (0.0 to 1.0)
average_speedup: f64
Average SIMD speedup across all tests
max_speedup: f64
Maximum observed speedup
min_speedup: f64
Minimum observed speedup
platform_info: ValidationSession
Platform information for this validation run
detailed_results: Vec<ValidationResult<T>>
Detailed results for all tests
validation_duration: Duration
Total time spent on validation
Implementations§
Source§impl<T: InterpolationFloat + SimdUnifiedOps + FloatCore> ValidationSummary<T>
impl<T: InterpolationFloat + SimdUnifiedOps + FloatCore> ValidationSummary<T>
Sourcepub fn print_report(&self)
pub fn print_report(&self)
Print a comprehensive validation report
Sourcepub fn meets_quality_standards(&self) -> bool
pub fn meets_quality_standards(&self) -> bool
Check if validation meets quality standards
Trait Implementations§
Source§impl<T: Clone + InterpolationFloat> Clone for ValidationSummary<T>
impl<T: Clone + InterpolationFloat> Clone for ValidationSummary<T>
Source§fn clone(&self) -> ValidationSummary<T>
fn clone(&self) -> ValidationSummary<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for ValidationSummary<T>
impl<T> RefUnwindSafe for ValidationSummary<T>where
T: RefUnwindSafe,
impl<T> Send for ValidationSummary<T>
impl<T> Sync for ValidationSummary<T>
impl<T> Unpin for ValidationSummary<T>where
T: Unpin,
impl<T> UnwindSafe for ValidationSummary<T>where
T: UnwindSafe,
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> 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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
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.