QuantumGraph¶
- class lsst.pipe.base.QuantumGraph(quanta: Mapping[TaskDef, Set[Quantum]], metadata: Mapping[str, Any] | None = None, pruneRefs: Iterable[DatasetRef] | None = None, universe: DimensionUniverse | None = None, initInputs: Mapping[TaskDef, Iterable[DatasetRef]] | None = None, initOutputs: Mapping[TaskDef, Iterable[DatasetRef]] | None = None, globalInitOutputs: Iterable[DatasetRef] | None = None)¶
Bases:
object
QuantumGraph is a directed acyclic graph of
QuantumNode
objectsThis data structure represents a concrete workflow generated from a
Pipeline
.- Parameters:
- quantaMapping of
TaskDef
to sets ofQuantum
This maps tasks (and their configs) to the sets of data they are to process.
- metadataOptional Mapping of
str
to primitives This is an optional parameter of extra data to carry with the graph. Entries in this mapping should be able to be serialized in JSON.
- pruneRefsiterable [
DatasetRef
], optional Set of dataset refs to exclude from a graph.
- initInputs
Mapping
, optional Maps tasks to their InitInput dataset refs. Dataset refs can be either resolved or non-resolved. Presently the same dataset refs are included in each
Quantum
for the same task.- initOutputs
Mapping
, optional Maps tasks to their InitOutput dataset refs. Dataset refs can be either resolved or non-resolved. For intermediate resolved refs their dataset ID must match
initInputs
and QuantuminitInputs
.- globalInitOutputsiterable [
DatasetRef
], optional Dataset refs for some global objects produced by pipeline. These objects include task configurations and package versions. Typically they have an empty DataId, but there is no real restriction on what can appear here.
- quantaMapping of
- Raises:
- ValueError
Raised if the graph is pruned such that some tasks no longer have nodes associated with them.
Attributes Summary
Return all the
DatasetTypeName
objects that are contained inside the graph.Return a graph representing the relations between all the
QuantumNode
objects.Returns the ID generated by the graph at construction time
Make a
list
of allQuantumNode
objects that are 'input' nodes to the graph, meaning those nodes to not depend on any other nodes in the graph.Return True if all of the nodes in the graph are connected, ignores directionality of connections.
Make a
list
of allQuantumNode
objects that are 'output' nodes to the graph, meaning those nodes have no nodes that depend them in the graph.Return a graph representing the relations between the tasks inside the quantum graph.
Dimension universe associated with this graph.
Methods Summary
Creates a header that would be used in a save of this object and prints it out to standard out.
checkQuantumInGraph
(quantum)Check if specified quantum appears in the graph as part of a node.
Return a graph of the specified node and all the ancestor nodes directly reachable by walking edges.
Return a graph of
QuantumNode
that are direct inputs and outputs of a specified node.Return a set of
QuantumNode
that are direct inputs to a specified node.Return a set of
QuantumNode
that are direct outputs of a specified node.Check a graph for the presense of cycles and returns the edges of any cycles found, or an empty list if there is no cycle.
findQuantaWithDSType
(datasetTypeName)Return all the
Quantum
that contain a specifiedDatasetTypeName
.findTaskDefByLabel
(label)Determine which
TaskDef
objects in this graph are associated with astr
representing a tasks label.findTaskDefByName
(taskName)Determine which
TaskDef
objects in this graph are associated with astr
representing a task name (looks at the taskName property ofTaskDef
objects).findTaskWithOutput
(datasetTypeName)Find all tasks that have the specified dataset type name as an output.
findTasksWithInput
(datasetTypeName)Find all tasks that have the specified dataset type name as an input.
getNodesForTask
(taskDef)Return all the
QuantumNodes
associated with aTaskDef
.getNumberOfQuantaForTask
(taskDef)Return all the number of
Quantum
associated with aTaskDef
.getQuantaForTask
(taskDef)Return all the
Quantum
associated with aTaskDef
.getQuantumNodeByNodeId
(nodeId)Lookup a
QuantumNode
from an id associated with the node.Return DatasetRefs for global InitOutputs.
initInputRefs
(taskDef)Return DatasetRefs for a given task InitInputs.
initOutputRefs
(taskDef)Return DatasetRefs for a given task InitOutputs.
Iterate over the
taskGraph
attribute in topological orderload
(file[, universe, nodes, graphID, ...])Read QuantumGraph from a file that was made by
save
.loadUri
(uri[, universe, nodes, graphID, ...])Read
QuantumGraph
from a URI.pruneGraphFromRefs
(refs)Return a graph pruned of input
DatasetRef
s and nodes which depend on them.readHeader
(uri[, minimumVersion])Read the header of a
QuantumGraph
pointed to by the uri parameter and return it as a string.save
(file)Save QuantumGraph to a file.
saveUri
(uri)Save
QuantumGraph
to the specified URI.subset
(nodes)Create a new graph object that contains the subset of the nodes specified as input.
Generate a list of subgraphs where each is connected.
tasksWithDSType
(datasetTypeName)Find all tasks that are associated with the specified dataset type name.
writeDotGraph
(output)Write out the graph as a dot graph.
Attributes Documentation
- allDatasetTypes¶
Return all the
DatasetTypeName
objects that are contained inside the graph.- Returns:
- tuple of
DatasetTypeName
All the data set type names that are present in the graph, not including global init-outputs.
- tuple of
- graph¶
Return a graph representing the relations between all the
QuantumNode
objects. Largely it should be preferred to iterate over, and use methods of this class, but sometimes direct access to the networkx object may be helpful- Returns:
- graph
networkx.Digraph
Internal datastructure that holds relations of
QuantumNode
objects
- graph
- graphID¶
Returns the ID generated by the graph at construction time
- inputQuanta¶
Make a
list
of allQuantumNode
objects that are ‘input’ nodes to the graph, meaning those nodes to not depend on any other nodes in the graph.- Returns:
- inputNodesiterable of
QuantumNode
A list of nodes that are inputs to the graph
- inputNodesiterable of
- isConnected¶
Return True if all of the nodes in the graph are connected, ignores directionality of connections.
- metadata¶
- outputQuanta¶
Make a
list
of allQuantumNode
objects that are ‘output’ nodes to the graph, meaning those nodes have no nodes that depend them in the graph.- Returns:
- outputNodesiterable of
QuantumNode
A list of nodes that are outputs of the graph
- outputNodesiterable of
- taskGraph¶
Return a graph representing the relations between the tasks inside the quantum graph.
- Returns:
- taskGraph
networkx.Digraph
Internal datastructure that holds relations of
TaskDef
objects
- taskGraph
- universe¶
Dimension universe associated with this graph.
Methods Documentation
- buildAndPrintHeader() None ¶
Creates a header that would be used in a save of this object and prints it out to standard out.
- checkQuantumInGraph(quantum: Quantum) bool ¶
Check if specified quantum appears in the graph as part of a node.
- Parameters:
- quantum
Quantum
The quantum to search for
- quantum
- Returns:
bool
The result of searching for the quantum
- determineAncestorsOfQuantumNode(node: QuantumNode) _T ¶
Return a graph of the specified node and all the ancestor nodes directly reachable by walking edges.
- Parameters:
- node
QuantumNode
The node for which all ansestors are to be determined
- node
- Returns:
- graph of
QuantumNode
Graph of node and all of its ansestors
- graph of
- determineConnectionsOfQuantumNode(node: QuantumNode) _T ¶
Return a graph of
QuantumNode
that are direct inputs and outputs of a specified node.- Parameters:
- node
QuantumNode
The node of the graph for which connected nodes are to be determined.
- node
- Returns:
- graphgraph of
QuantumNode
All the nodes that are directly connected to specified node
- graphgraph of
- determineInputsToQuantumNode(node: QuantumNode) Set[QuantumNode] ¶
Return a set of
QuantumNode
that are direct inputs to a specified node.- Parameters:
- node
QuantumNode
The node of the graph for which inputs are to be determined
- node
- Returns:
- set of
QuantumNode
All the nodes that are direct inputs to specified node
- set of
- determineOutputsOfQuantumNode(node: QuantumNode) Set[QuantumNode] ¶
Return a set of
QuantumNode
that are direct outputs of a specified node.- Parameters:
- node
QuantumNode
The node of the graph for which outputs are to be determined
- node
- Returns:
- set of
QuantumNode
All the nodes that are direct outputs to specified node
- set of
- findCycle() List[Tuple[QuantumNode, QuantumNode]] ¶
Check a graph for the presense of cycles and returns the edges of any cycles found, or an empty list if there is no cycle.
- Returns:
- resultlist of tuple of
QuantumNode
,QuantumNode
A list of any graph edges that form a cycle, or an empty list if there is no cycle. Empty list to so support if graph.find_cycle() syntax as an empty list is falsy.
- resultlist of tuple of
- findQuantaWithDSType(datasetTypeName: DatasetTypeName) Set[Quantum] ¶
Return all the
Quantum
that contain a specifiedDatasetTypeName
.- Parameters:
- datasetTypeName
str
The name of the dataset type to search for as a string, can also accept a
DatasetTypeName
which is aNewType
of str for type safety in static type checking.
- datasetTypeName
- Returns:
- result
set
ofQuantumNode
objects A
set
ofQuantumNode`s that contain specified `DatasetTypeName
- result
- Raises:
- KeyError
Raised if the
DatasetTypeName
is not part of theQuantumGraph
- findTaskDefByLabel(label: str) TaskDef | None ¶
Determine which
TaskDef
objects in this graph are associated with astr
representing a tasks label.
- findTaskDefByName(taskName: str) List[TaskDef] ¶
Determine which
TaskDef
objects in this graph are associated with astr
representing a task name (looks at the taskName property ofTaskDef
objects).Returns a list of
TaskDef
objects as aPipelineTask
may appear multiple times in a graph with different labels.
- findTaskWithOutput(datasetTypeName: DatasetTypeName) TaskDef | None ¶
Find all tasks that have the specified dataset type name as an output.
- Parameters:
- datasetTypeName
str
A string representing the name of a dataset type to be queried, can also accept a
DatasetTypeName
which is aNewType
of str for type safety in static type checking.
- datasetTypeName
- Returns:
- Raises:
- KeyError
Raised if the
DatasetTypeName
is not part of theQuantumGraph
- findTasksWithInput(datasetTypeName: DatasetTypeName) Iterable[TaskDef] ¶
Find all tasks that have the specified dataset type name as an input.
- Parameters:
- datasetTypeName
str
A string representing the name of a dataset type to be queried, can also accept a
DatasetTypeName
which is aNewType
of str for type safety in static type checking.
- datasetTypeName
- Returns:
- Raises:
- KeyError
Raised if the
DatasetTypeName
is not part of theQuantumGraph
- getNodesForTask(taskDef: TaskDef) FrozenSet[QuantumNode] ¶
Return all the
QuantumNodes
associated with aTaskDef
.
- getNumberOfQuantaForTask(taskDef: TaskDef) int ¶
Return all the number of
Quantum
associated with aTaskDef
.
- getQuantaForTask(taskDef: TaskDef) FrozenSet[Quantum] ¶
Return all the
Quantum
associated with aTaskDef
.
- getQuantumNodeByNodeId(nodeId: UUID) QuantumNode ¶
Lookup a
QuantumNode
from an id associated with the node.- Parameters:
- nodeId
NodeId
The number associated with a node
- nodeId
- Returns:
- node
QuantumNode
The node corresponding with input number
- node
- Raises:
- KeyError
Raised if the requested nodeId is not in the graph.
- globalInitOutputRefs() List[DatasetRef] ¶
Return DatasetRefs for global InitOutputs.
- Returns:
- refs
list
[DatasetRef
] DatasetRefs for global InitOutputs.
- refs
- initInputRefs(taskDef: TaskDef) List[DatasetRef] | None ¶
Return DatasetRefs for a given task InitInputs.
- initOutputRefs(taskDef: TaskDef) List[DatasetRef] | None ¶
Return DatasetRefs for a given task InitOutputs.
- iterTaskGraph() Generator[TaskDef, None, None] ¶
Iterate over the
taskGraph
attribute in topological order
- classmethod load(file: BinaryIO, universe: DimensionUniverse | None = None, nodes: Iterable[UUID] | None = None, graphID: BuildId | None = None, minimumVersion: int = 3) QuantumGraph ¶
Read QuantumGraph from a file that was made by
save
.- Parameters:
- file
io.IO
of bytes File with pickle data open in binary mode.
- universe: `~lsst.daf.butler.DimensionUniverse`, optional
DimensionUniverse instance, not used by the method itself but needed to ensure that registry data structures are initialized. If None it is loaded from the QuantumGraph saved structure. If supplied, the DimensionUniverse from the loaded
QuantumGraph
will be validated against the supplied argument for compatibility.- nodes: iterable of `int` or None
Numbers that correspond to nodes in the graph. If specified, only these nodes will be loaded. Defaults to None, in which case all nodes will be loaded.
- graphID
str
orNone
If specified this ID is verified against the loaded graph prior to loading any Nodes. This defaults to None in which case no validation is done.
- minimumVersionint
Minimum version of a save file to load. Set to -1 to load all versions. Older versions may need to be loaded, and re-saved to upgrade them to the latest format before they can be used in production.
- file
- Returns:
- graph
QuantumGraph
Resulting QuantumGraph instance.
- graph
- Raises:
- TypeError
Raised if pickle contains instance of a type other than QuantumGraph.
- ValueError
Raised if one or more of the nodes requested is not in the
QuantumGraph
or if graphID parameter does not match the graph being loaded or if the supplied uri does not point at a validQuantumGraph
save file.
Notes
Reading Quanta from pickle requires existence of singleton DimensionUniverse which is usually instantiated during Registry initialization. To make sure that DimensionUniverse exists this method accepts dummy DimensionUniverse argument.
- classmethod loadUri(uri: str | ParseResult | ResourcePath | Path, universe: DimensionUniverse | None = None, nodes: Iterable[UUID] | None = None, graphID: BuildId | None = None, minimumVersion: int = 3) QuantumGraph ¶
Read
QuantumGraph
from a URI.- Parameters:
- uriconvertible to
ResourcePath
URI from where to load the graph.
- universe: `~lsst.daf.butler.DimensionUniverse` optional
DimensionUniverse instance, not used by the method itself but needed to ensure that registry data structures are initialized. If None it is loaded from the QuantumGraph saved structure. If supplied, the DimensionUniverse from the loaded
QuantumGraph
will be validated against the supplied argument for compatibility.- nodes: iterable of `int` or None
Numbers that correspond to nodes in the graph. If specified, only these nodes will be loaded. Defaults to None, in which case all nodes will be loaded.
- graphID
str
orNone
If specified this ID is verified against the loaded graph prior to loading any Nodes. This defaults to None in which case no validation is done.
- minimumVersionint
Minimum version of a save file to load. Set to -1 to load all versions. Older versions may need to be loaded, and re-saved to upgrade them to the latest format before they can be used in production.
- uriconvertible to
- Returns:
- graph
QuantumGraph
Resulting QuantumGraph instance.
- graph
- Raises:
- TypeError
Raised if pickle contains instance of a type other than QuantumGraph.
- ValueError
Raised if one or more of the nodes requested is not in the
QuantumGraph
or if graphID parameter does not match the graph being loaded or if the supplied uri does not point at a validQuantumGraph
save file.- RuntimeError
Raise if Supplied DimensionUniverse is not compatible with the DimensionUniverse saved in the graph
Notes
Reading Quanta from pickle requires existence of singleton DimensionUniverse which is usually instantiated during Registry initialization. To make sure that DimensionUniverse exists this method accepts dummy DimensionUniverse argument.
- pruneGraphFromRefs(refs: Iterable[DatasetRef]) _T ¶
Return a graph pruned of input
DatasetRef
s and nodes which depend on them.- Parameters:
- refs
Iterable
ofDatasetRef
Refs which should be removed from resulting graph
- refs
- Returns:
- graph
QuantumGraph
A graph that has been pruned of specified refs and the nodes that depend on them.
- graph
- classmethod readHeader(uri: str | ParseResult | ResourcePath | Path, minimumVersion: int = 3) str | None ¶
Read the header of a
QuantumGraph
pointed to by the uri parameter and return it as a string.- Parameters:
- uriconvertible to
ResourcePath
The location of the
QuantumGraph
to load. If the argument is a string, it must correspond to a validResourcePath
path.- minimumVersionint
Minimum version of a save file to load. Set to -1 to load all versions. Older versions may need to be loaded, and re-saved to upgrade them to the latest format before they can be used in production.
- uriconvertible to
- Returns:
- header
str
orNone
The header associated with the specified
QuantumGraph
it there is one, elseNone
.
- header
- Raises:
- ValueError
Raised if
QuantuGraph
was saved as a pickle. Raised if the extention of the file specified by uri is not aQuantumGraph
extention.
- save(file: BinaryIO) None ¶
Save QuantumGraph to a file.
- Parameters:
- file
io.BufferedIOBase
File to write pickle data open in binary mode.
- file
- saveUri(uri: str | ParseResult | ResourcePath | Path) None ¶
Save
QuantumGraph
to the specified URI.- Parameters:
- uriconvertible to
ResourcePath
URI to where the graph should be saved.
- uriconvertible to
- subset(nodes: QuantumNode | Iterable[QuantumNode]) _T ¶
Create a new graph object that contains the subset of the nodes specified as input. Node number is preserved.
- Parameters:
- nodes
QuantumNode
or iterable ofQuantumNode
- nodes
- Returns:
- graphinstance of graph type
An instance of the type from which the subset was created
- subsetToConnected() Tuple[_T, ...] ¶
Generate a list of subgraphs where each is connected.
- Returns:
- resultlist of
QuantumGraph
A list of graphs that are each connected
- resultlist of
- tasksWithDSType(datasetTypeName: DatasetTypeName) Iterable[TaskDef] ¶
Find all tasks that are associated with the specified dataset type name.
- Parameters:
- datasetTypeName
str
A string representing the name of a dataset type to be queried, can also accept a
DatasetTypeName
which is aNewType
of str for type safety in static type checking.
- datasetTypeName
- Returns:
- Raises:
- KeyError
Raised if the
DatasetTypeName
is not part of theQuantumGraph
- writeDotGraph(output: str | BufferedIOBase) None ¶
Write out the graph as a dot graph.
- Parameters:
- outputstr or
io.BufferedIOBase
Either a filesystem path to write to, or a file handle object
- outputstr or