MCPcopy
hub / github.com/pydata/xarray / __dask_layers__

Method __dask_layers__

xarray/core/dataset.py:669–679  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

667 ]
668
669 def __dask_layers__(self):
670 import dask
671
672 return sum(
673 (
674 v.__dask_layers__()
675 for v in self.variables.values()
676 if dask.is_dask_collection(v)
677 ),
678 (),
679 )
680
681 @property
682 def __dask_optimize__(self):

Callers 2

_dask_postpersistMethod · 0.45
test_graph_manipulationFunction · 0.45

Calls 1

valuesMethod · 0.45

Tested by 1

test_graph_manipulationFunction · 0.36