Skip to main content

Module graph

Module graph 

Source
Expand description

Computational graph — DAG of filter nodes connected by edges.

The graph is the user-facing representation of a pipeline topology. It gets compiled into an [ExecutionPlan] by the compiler.

Structs§

Edge
A directed edge connecting two nodes.
Graph
A directed graph of computational nodes.
Node
A node in the computational graph.

Enums§

EdgeKind
Type of connection between nodes.
NodeKind
What kind of computation a node represents.

Functions§

linear_pipeline
Builder for constructing linear pipelines easily.

Type Aliases§

EdgeId
Unique identifier for an edge in a graph.
NodeId
Unique identifier for a node in a graph.