QuantumGraph¶
-
class
lsst.pipe.base.
QuantumGraph
(iterable=None)¶ Bases:
list
QuantumGraph is a sequence of
QuantumGraphTaskNodes
objects.Typically the order of the tasks in the list will be the same as the order of tasks in a pipeline (obviously depends on the code which constructs graph).
Parameters: - iterable : iterable of
QuantumGraphTaskNodes
, optional Initial sequence of per-task nodes.
Methods Summary
append
($self, object, /)Append object to the end of the list. clear
($self, /)Remove all items from list. copy
($self, /)Return a shallow copy of the list. count
($self, value, /)Return number of occurrences of value. extend
($self, iterable, /)Extend list by appending elements from the iterable. getDatasetTypes
([initInputs, initOutputs, …])index
($self, value[, start, stop])Return first index of value. insert
($self, index, object, /)Insert object before index. pop
($self[, index])Remove and return item at index (default last). quanta
()Iterator over quanta in a graph. remove
($self, value, /)Remove first occurrence of value. reverse
($self, /)Reverse IN PLACE. sort
($self, /, *[, key, reverse])Stable sort IN PLACE. traverse
()Return topologically ordered Quanta and their dependencies. Methods Documentation
-
append
($self, object, /)¶ Append object to the end of the list.
-
clear
($self, /)¶ Remove all items from list.
-
copy
($self, /)¶ Return a shallow copy of the list.
-
count
($self, value, /)¶ Return number of occurrences of value.
-
extend
($self, iterable, /)¶ Extend list by appending elements from the iterable.
-
getDatasetTypes
(initInputs=True, initOutputs=True, inputs=True, outputs=True)¶
-
index
($self, value, start=0, stop=sys.maxsize, /)¶ Return first index of value.
Raises ValueError if the value is not present.
-
insert
($self, index, object, /)¶ Insert object before index.
-
pop
($self, index=-1, /)¶ Remove and return item at index (default last).
Raises IndexError if list is empty or index is out of range.
-
quanta
()¶ Iterator over quanta in a graph.
Quanta are returned in unspecified order.
Yields:
-
remove
($self, value, /)¶ Remove first occurrence of value.
Raises ValueError if the value is not present.
-
reverse
($self, /)¶ Reverse IN PLACE.
-
sort
($self, /, *, key=None, reverse=False)¶ Stable sort IN PLACE.
-
traverse
()¶ Return topologically ordered Quanta and their dependencies.
This method iterates over all Quanta in topological order, enumerating them during iteration. Returned
QuantumIterData
object contains Quantum instance, itsquantumId
andquantumId
of all its prerequsites (Quanta that produce inputs for this Quantum): - thequantumId
values are generated by an iteration of aQuantumGraph, and are not intrinsic to the QuantumGraph- during iteration, each ID will appear in quantumId before it ever appears in dependencies.
Yields: - quantumData :
QuantumIterData
- iterable : iterable of