pub struct GraphDiff {
pub left_only_tensors: Vec<String>,
pub right_only_tensors: Vec<String>,
pub left_only_nodes: usize,
pub right_only_nodes: usize,
pub node_differences: Vec<NodeDiff>,
pub output_differences: Vec<String>,
}Expand description
Difference between two graphs
Fields§
§left_only_tensors: Vec<String>Tensors only in left graph
right_only_tensors: Vec<String>Tensors only in right graph
left_only_nodes: usizeNodes only in left graph
right_only_nodes: usizeNodes only in right graph
node_differences: Vec<NodeDiff>Different node operations
output_differences: Vec<String>Output differences
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphDiff
impl RefUnwindSafe for GraphDiff
impl Send for GraphDiff
impl Sync for GraphDiff
impl Unpin for GraphDiff
impl UnwindSafe for GraphDiff
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