[][src]Struct tract_core::model::ModelPatch

pub struct ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
{ pub model: ModelImpl<F, O>, pub incoming: HashMap<OutletId, OutletId>, pub shunt_outlet_by: HashMap<OutletId, OutletId>, pub obliterate: Vec<usize>, }

A change to apply to a model.

Actually structured around a model that represent the new nodes to be inserted, plus information about how to connect these new nodes to the pre-existing graph.

Fields

model: ModelImpl<F, O>

the model-like 'pagch' of nodes to add to the model

incoming: HashMap<OutletId, OutletId>shunt_outlet_by: HashMap<OutletId, OutletId>obliterate: Vec<usize>

Methods

impl<F, O> ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

pub fn is_empty(&self) -> bool[src]

pub fn tap_model(
    &mut self,
    model: &ModelImpl<F, O>,
    outlet: OutletId
) -> TractResult<OutletId>
[src]

Draw a tap from a preexisting node.

returns an OutletId usable in the little "patch" model

pub fn shunt_outside(
    &mut self,
    outlet: OutletId,
    by: OutletId
) -> TractResult<()>
[src]

Replace an Outlet in the target model by one from the patch.

pub fn obliterate(&mut self, node: usize) -> TractResult<()>[src]

pub fn replace_single_op<IO: Into<O>>(
    patched_model: &ModelImpl<F, O>,
    node: &BaseNode<F, O>,
    inputs: &[OutletId],
    new_op: IO
) -> TractResult<ModelPatch<F, O>>
[src]

Convenience method creating a patch that replace a single operation.

pub fn fuse_with_next<IO: Into<O>>(
    patched_model: &ModelImpl<F, O>,
    node: &BaseNode<F, O>,
    new_op: IO
) -> TractResult<ModelPatch<F, O>>
[src]

Convenience method creating a patch that replace a single operation.

pub fn shunt_one_op(
    patched_model: &ModelImpl<F, O>,
    node: &BaseNode<F, O>
) -> TractResult<ModelPatch<F, O>>
[src]

Convenience method creating a patch that shunt the given node.

pub fn single_unary_op<IO: Into<O>>(
    patched_model: &ModelImpl<F, O>,
    node: &BaseNode<F, O>,
    new_op: IO
) -> TractResult<ModelPatch<F, O>>
[src]

Convenience method creating a patch that replace a single unary operation.

pub fn intercept<IO: Into<O>>(
    patched_model: &ModelImpl<F, O>,
    outlet: OutletId,
    name: impl Into<String>,
    new_op: IO,
    fact: F
) -> TractResult<ModelPatch<F, O>>
[src]

Convenience method creating a patch that insert an unary op on an outlet.

pub fn apply(self, target: &mut ModelImpl<F, O>) -> TractResult<()>[src]

Apply all changes in the patch to the target model.

Methods from Deref<Target = ModelImpl<F, O>>

pub fn add_node(
    &mut self,
    name: impl Into<String>,
    op: impl Into<O>,
    output_facts: TVec<F>
) -> TractResult<usize>
[src]

pub fn add_edge(&mut self, outlet: OutletId, inlet: InletId) -> TractResult<()>[src]

Connect a node outlet to a node inlet.

pub fn input_outlets(&self) -> TractResult<&[OutletId]>[src]

Get model inputs.

pub fn set_input_outlets(&mut self, inputs: &[OutletId]) -> TractResult<()>[src]

Change model inputs.

pub fn set_input_names(
    &mut self,
    inputs: impl IntoIterator<Item = impl AsRef<str>>
) -> TractResult<()>
[src]

Set model inputs by the node name.

pub fn input_fact(&self, ix: usize) -> TractResult<&F>[src]

Get the ix-th input tensor type information.

pub fn input_fact_mut(&mut self, ix: usize) -> TractResult<&mut F>[src]

Get the ix-th input tensor type information, mutably.

pub fn set_input_fact(&mut self, input: usize, fact: F) -> TractResult<()>[src]

Set the ix-th input tensor type information.

pub fn output_outlets(&self) -> TractResult<&[OutletId]>[src]

Get model outputs.

pub fn auto_outputs(&mut self) -> TractResult<()>[src]

Guess outputs from the topology: node or nodes with no successors.

pub fn set_output_outlets(&mut self, outputs: &[OutletId]) -> TractResult<()>[src]

Change model outputs.

pub fn set_output_names(
    &mut self,
    outputs: impl IntoIterator<Item = impl AsRef<str>>
) -> TractResult<()>
[src]

Set model outputs by node names.

pub fn output_fact(&self, ix: usize) -> TractResult<&F>[src]

Get the ix-th input tensor type information.

pub fn output_fact_mut(&mut self, ix: usize) -> TractResult<&mut F>[src]

Get the ix-th input tensor type information, mutably.

pub fn set_output_fact(&mut self, output: usize, fact: F) -> TractResult<()>[src]

Set the ix-th output tensor type information.

pub fn node_names(&self) -> impl Iterator<Item = &str>[src]

Iterate over all node names.

pub fn node_by_name<S: AsRef<str>>(
    &self,
    name: S
) -> TractResult<&BaseNode<F, O>>
[src]

Find a node by its name.

pub fn node_by_name_mut(
    &mut self,
    name: &str
) -> TractResult<&mut BaseNode<F, O>>
[src]

Borrow mutably a node by its name.

pub fn rename_node(&mut self, id: usize, name: &str) -> TractResult<()>[src]

pub fn node(&self, id: usize) -> &BaseNode<F, O>[src]

Find a node by its id.

pub fn node_mut(&mut self, id: usize) -> &mut BaseNode<F, O>[src]

Find a node by its id.

pub fn nodes(&self) -> &[BaseNode<F, O>][src]

Access the nodes table.

pub fn nodes_mut(&mut self) -> &mut [BaseNode<F, O>][src]

Access the nodes table.

pub fn node_facts(&self, id: usize) -> TractResult<(TVec<&F>, TVec<&F>)>[src]

Get input and output tensor information for a node.

pub fn node_input_facts(&self, node_id: usize) -> TractResult<TVec<&F>>[src]

Get input tensor information for a node.

pub fn node_output_facts(&self, node_id: usize) -> TractResult<TVec<&F>>[src]

Get output tensor information for a node.

pub fn outlet_fact(&self, outlet: OutletId) -> TractResult<&F>[src]

Get tensor information for a single outlet.

pub fn outlet_fact_mut(&mut self, outlet: OutletId) -> TractResult<&mut F>[src]

Get tensor information for a single outlet.

pub fn outlets_fact_mut(
    &mut self,
    outlets: &[OutletId]
) -> TractResult<TVec<&mut F>>
[src]

Get multiple mutable tensor information for outlets.

pub fn set_outlet_fact(&mut self, outlet: OutletId, fact: F) -> TractResult<()>[src]

Set tensor information for a single outlet.

pub fn outlet_label(&self, outlet: OutletId) -> Option<&str>[src]

Get label for an outlet.

pub fn set_outlet_label(&mut self, outlet: OutletId, label: String)[src]

Set label for an outlet.

pub fn find_outlet_label(&self, label: &str) -> Option<OutletId>[src]

Find outlet by label.

pub fn eval_order(&self) -> TractResult<Vec<usize>>[src]

Computes an evalutation order for the graph inputs and outputs

pub fn check_edges(&self) -> TractResult<()>[src]

Performs a sanity check on network connections.

Trait Implementations

impl<F: Clone, O: Clone> Clone for ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

impl<F: Debug, O: Debug> Debug for ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

impl<F, O> Default for ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

impl<F, O> Deref for ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

type Target = ModelImpl<F, O>

The resulting type after dereferencing.

impl<F, O> DerefMut for ModelPatch<F, O> where
    F: Fact + Clone + 'static,
    O: Display + Debug + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
    ModelImpl<F, O>: ModelSpecialOps<F, O>, 
[src]

Auto Trait Implementations

impl<F, O> RefUnwindSafe for ModelPatch<F, O> where
    F: RefUnwindSafe,
    O: RefUnwindSafe

impl<F, O> Send for ModelPatch<F, O> where
    O: Send

impl<F, O> Sync for ModelPatch<F, O> where
    O: Sync

impl<F, O> Unpin for ModelPatch<F, O> where
    F: Unpin,
    O: Unpin

impl<F, O> UnwindSafe for ModelPatch<F, O> where
    F: RefUnwindSafe + UnwindSafe,
    O: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.