MCPcopy
hub / github.com/dask/dask / _execute_subgraph

Function _execute_subgraph

dask/_task_spec.py:194–200  ·  view source on GitHub ↗
(inner_dsk, outkey, inkeys, *dependencies)

Source from the content-addressed store, hash-verified

192
193
194def _execute_subgraph(inner_dsk, outkey, inkeys, *dependencies):
195 final = {}
196 final.update(inner_dsk)
197 for k, v in zip(inkeys, dependencies):
198 final[k] = DataNode(None, v)
199 res = execute_graph(final, keys=[outkey])
200 return res[outkey]
201
202
203def convert_legacy_task(

Callers

nothing calls this directly

Calls 2

DataNodeClass · 0.85
execute_graphFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…