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

Method __dask_keys__

dask/array/_array_expr/_expr.py:97–105  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

95 return keys()
96
97 def __dask_keys__(self):
98 key_refs = self._cached_keys
99
100 def unwrap(task):
101 if isinstance(task, List):
102 return [unwrap(t) for t in task.args]
103 return task.key
104
105 return unwrap(key_refs)
106
107 def __hash__(self):
108 return hash(self._name)

Callers 15

test_short_stackFunction · 0.45
test_optimizeFunction · 0.45
test_asanyarrayFunction · 0.45
test_turn_off_fusionFunction · 0.45
test_reductions_2DFunction · 0.45
apply_gufuncFunction · 0.45

Calls

no outgoing calls

Tested by 11

test_short_stackFunction · 0.36
test_optimizeFunction · 0.36
test_asanyarrayFunction · 0.36
test_turn_off_fusionFunction · 0.36
test_reductions_2DFunction · 0.36