MCPcopy
hub / github.com/dask/dask / _numel_ndarray

Function _numel_ndarray

dask/array/backends.py:269–271  ·  view source on GitHub ↗

Numel implementation for arrays that want to return numel of type ndarray.

(x, **kwargs)

Source from the content-addressed store, hash-verified

267
268@numel_lookup.register((object, np.ndarray))
269def _numel_ndarray(x, **kwargs):
270 """Numel implementation for arrays that want to return numel of type ndarray."""
271 return _numel(x, coerce_np_ndarray=True, **kwargs)
272
273
274def _numel_arraylike(x, **kwargs):

Callers

nothing calls this directly

Calls 1

_numelFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…