Struct tract_core::model::Graph[][src]

pub struct Graph<F, O> where
    F: Fact + Hash + Clone + 'static,
    O: Debug + Display + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static + Hash
{ pub nodes: Vec<Node<F, O>>, pub inputs: Vec<OutletId>, pub outputs: Vec<OutletId>, pub outlet_labels: HashMap<OutletId, String>, pub properties: HashMap<String, Arc<Tensor>>, }
Expand description

Main model class

Parameterized by a Fact class.

Fields

nodes: Vec<Node<F, O>>

all nodes in the model

inputs: Vec<OutletId>

model inputs

outputs: Vec<OutletId>

model outputs

outlet_labels: HashMap<OutletId, String>

outlet labels

properties: HashMap<String, Arc<Tensor>>

model properties

Implementations

Connect a node outlet to a node inlet.

Get model inputs.

Change model inputs.

Change model inputs and return self.

Set model inputs by the node name.

Set model inputs by the node name and return self.

Get the ix-th input tensor type information.

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

Set the ix-th input tensor type information.

Set the ix-th input tensor type information and return self.

Get model outputs.

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

Change model outputs.

Change model outputs and return self.

Set model outputs by node names.

Set model outputs by node names and return self.

Get the ix-th input tensor type information.

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

Set the ix-th output tensor type information.

Set the ix-th output tensor type information and return self.

Iterate over all node names.

Find a node by its name.

Borrow mutably a node by its name.

Find a node by its id.

Find a node by its id.

Access the nodes table.

Access the nodes table.

Get input and output tensor information for a node.

Get input tensor information for a node.

Get output tensor information for a node.

Get tensor information for a single outlet.

Get tensor information for a single outlet.

Get multiple mutable tensor information for outlets.

Set tensor information for a single outlet.

Set tensor information for a single outlet and return self.

Get label for an outlet.

Set label for an outlet.

Set label for an outlet and return self.

Find outlet by label.

Computes an evalutation order for the graph inputs and outputs

Performs a sanity check on network connections.

Converts the model into a RunnableModel which fixes the inputs and outputs and allows passing data through the model.

Perform declutter passes on the network.

Translate the graph to locally optimized operators (LIR or MIR ops).

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.