MCPcopy Create free account
hub / github.com/Apress/python-for-matlab-development / delayed

Function delayed

code/dask/bridge_dask.py:31–32  ·  view source on GitHub ↗
(Fn, *args)

Source from the content-addressed store, hash-verified

29# }}}
30import dask
31def delayed(Fn, *args):
32 return dask.delayed(Fn)(*args);
33def compute(delayed_tasks):
34 return dask.compute(*delayed_tasks)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected