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

Function min

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

Source from the content-addressed store, hash-verified

101@implements(np.min, np.amin)
102@derived_from(np)
103def min(a, axis=None, keepdims=False, split_every=None, out=None):
104 return reduction(
105 a,
106 chunk_min,
107 chunk.min,
108 combine=chunk_min,
109 axis=axis,
110 keepdims=keepdims,
111 dtype=a.dtype,
112 split_every=split_every,
113 out=out,
114 )
115
116
117def 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