dask 2021.10.0

ParametersBackRef
lol_tuples(head, ind, values, dummies)

Parameters

head : tuple

The known tuple so far

ind : Iterable

An iterable of indices not yet covered

values : dict

Known values for non-dummy indices

dummies : dict

Ranges of values for dummy indices

List of list of tuple keys

Examples

This example is valid syntax, but we were not able to check execution
>>> lol_tuples(('x',), 'ij', {'i': 1, 'j': 0}, {})
('x', 1, 0)
This example is valid syntax, but we were not able to check execution
>>> lol_tuples(('x',), 'ij', {'i': 1}, {'j': range(3)})
[('x', 1, 0), ('x', 1, 1), ('x', 1, 2)]
This example is valid syntax, but we were not able to check execution
>>> lol_tuples(('x',), 'ijk', {'i': 1}, {'j': [0, 1, 2], 'k': [0, 1]}) # doctest: +NORMALIZE_WHITESPACE
[[('x', 1, 0, 0), ('x', 1, 0, 1)],
 [('x', 1, 1, 0), ('x', 1, 1, 1)],
 [('x', 1, 2, 0), ('x', 1, 2, 1)]]
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

dask.blockwise.zero_broadcast_dimensions dask.blockwise.lol_tuples

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /dask/blockwise.py#1145
type: <class 'function'>
Commit: