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

Method compute

xarray/namedarray/daskmanager.py:80–85  ·  view source on GitHub ↗
(
        self, *data: Any, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

78 ) # type: ignore[no-untyped-call]
79
80 def compute(
81 self, *data: Any, **kwargs: Any
82 ) -> tuple[np.ndarray[Any, _DType_co], ...]:
83 from dask.array import compute
84
85 return compute(*data, **kwargs) # type: ignore[no-untyped-call, no-any-return]
86
87 def persist(self, *data: Any, **kwargs: Any) -> tuple[DaskArray | Any, ...]:
88 from dask import persist

Callers 2

to_numpyFunction · 0.45
to_duck_arrayFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected