pub struct CheckpointParityReport {
pub format_version: u32,
pub kind: String,
pub passed: bool,
pub actual: PathBuf,
pub reference: PathBuf,
pub parity: ParityReport,
}Expand description
General parity report plus source artifact identities.
Fields§
§format_version: u32Report schema version.
kind: StringStable evaluation kind.
passed: boolWhether every identity and tensor comparison passed.
actual: PathBufActual backend artifact report.
reference: PathBufReference artifact report.
parity: ParityReportShared observation parity result.
Trait Implementations§
Source§impl Clone for CheckpointParityReport
impl Clone for CheckpointParityReport
Source§fn clone(&self) -> CheckpointParityReport
fn clone(&self) -> CheckpointParityReport
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 CheckpointParityReport
impl Debug for CheckpointParityReport
Source§impl<'de> Deserialize<'de> for CheckpointParityReport
impl<'de> Deserialize<'de> for CheckpointParityReport
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 CheckpointParityReport
impl PartialEq for CheckpointParityReport
Source§impl Serialize for CheckpointParityReport
impl Serialize for CheckpointParityReport
impl StructuralPartialEq for CheckpointParityReport
Auto Trait Implementations§
impl Freeze for CheckpointParityReport
impl RefUnwindSafe for CheckpointParityReport
impl Send for CheckpointParityReport
impl Sync for CheckpointParityReport
impl Unpin for CheckpointParityReport
impl UnsafeUnpin for CheckpointParityReport
impl UnwindSafe for CheckpointParityReport
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