MCPcopy
hub / github.com/dask/dask / __dask_keys__

Method __dask_keys__

dask/array/core.py:1400–1417  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1398 return (self.name,)
1399
1400 def __dask_keys__(self) -> NestedKeys:
1401 if self._cached_keys is not None:
1402 return self._cached_keys
1403
1404 name, chunks, numblocks = self.name, self.chunks, self.numblocks
1405
1406 def keys(*args):
1407 if not chunks:
1408 return [(name,)]
1409 ind = len(args)
1410 if ind + 1 == len(numblocks):
1411 result = [(name,) + args + (i,) for i in range(numblocks[ind])]
1412 else:
1413 result = [keys(*(args + (i,))) for i in range(numblocks[ind])]
1414 return result
1415
1416 self._cached_keys = result = keys()
1417 return result
1418
1419 def __dask_tokenize__(self):
1420 return self.name

Callers 15

_key_arrayMethod · 0.95
to_delayedMethod · 0.95
apply_gufuncFunction · 0.45
concatenate_array_chunksFunction · 0.45
setitem_arrayFunction · 0.45
to_npy_stackFunction · 0.45
reshapeFunction · 0.45
_choice_validate_paramsFunction · 0.45
percentileFunction · 0.45
histogramFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected