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

Function min

dask/array/reductions.py:104–115  ·  view source on GitHub ↗
(a, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

102@implements(np.min, np.amin)
103@derived_from(np)
104def min(a, axis=None, keepdims=False, split_every=None, out=None):
105 return reduction(
106 a,
107 chunk_min,
108 chunk.min,
109 combine=chunk_min,
110 axis=axis,
111 keepdims=keepdims,
112 dtype=a.dtype,
113 split_every=split_every,
114 out=out,
115 )
116
117
118def chunk_min(x, axis=None, keepdims=None):

Callers 15

minMethod · 0.90
_split_up_single_chunkFunction · 0.90
common_blockdimFunction · 0.90
minMethod · 0.90
_toposortFunction · 0.85
to_graphvizFunction · 0.85
orderFunction · 0.85
get_targetFunction · 0.85
fire_tasksFunction · 0.85
fuseFunction · 0.85
cpu_countFunction · 0.85
bag_rangeFunction · 0.85

Calls 1

reductionFunction · 0.90

Tested by 15

test_from_dictFunction · 0.68
test_flox_reductionFunction · 0.68
test_tsqrFunction · 0.68
test_tsqr_uncertainFunction · 0.68
test_sfqrFunction · 0.68
test_tsqrFunction · 0.68
test_tsqr_uncertainFunction · 0.68