MCPcopy Index your code
hub / github.com/dask/dask / __dask_graph__

Method __dask_graph__

dask/_expr.py:1315–1323  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1313 return f"finalize-{super()._name}"
1314
1315 def __dask_graph__(self):
1316 # The base class __dask_graph__ will not just materialize this layer but
1317 # also that of its dependencies, i.e. it will render the finalized and
1318 # the non-finalized graph and combine them. We only want the finalized
1319 # so we're overriding this.
1320 # This is an artifact generated because the wrapped expression is
1321 # identified automatically as a dependency but HLG expressions are not
1322 # working in this layered way.
1323 return self._layer()
1324
1325 @property
1326 def hlg(self):

Callers

nothing calls this directly

Calls 1

_layerMethod · 0.45

Tested by

no test coverage detected