MCPcopy Create free account
hub / github.com/dask/dask / __dask_graph__

Method __dask_graph__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_layerMethod · 0.45

Tested by

no test coverage detected