MCPcopy
hub / github.com/dask/dask / keyname

Function keyname

dask/array/core.py:5788–5794  ·  view source on GitHub ↗

>>> keyname('x', 3, [None, None, 0, 2]) ('x', 3, 0, 2)

(name, i, okey)

Source from the content-addressed store, hash-verified

5786
5787
5788def keyname(name, i, okey):
5789 """
5790
5791 >>> keyname('x', 3, [None, None, 0, 2])
5792 ('x', 3, 0, 2)
5793 """
5794 return (name, i) + tuple(k for k in okey if k is not None)
5795
5796
5797def _vindex(x, *indexes):

Callers 1

_vindex_arrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…