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

Method _meta

dask/array/_array_expr/_blockwise.py:65–73  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

63
64 @cached_property
65 def _meta(self):
66 if self._meta_provided is not None:
67 return meta_from_array(
68 self._meta_provided, ndim=self.ndim, dtype=self._meta_provided.dtype
69 )
70 else:
71 return compute_meta(
72 self.func, self.operand("dtype"), *self.args[::2], **self.kwargs
73 )
74
75 @cached_property
76 def chunks(self):

Callers

nothing calls this directly

Calls 3

meta_from_arrayFunction · 0.90
compute_metaFunction · 0.90
operandMethod · 0.80

Tested by

no test coverage detected