MCPcopy
hub / github.com/dask/dask / any

Function any

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

Source from the content-addressed store, hash-verified

151
152@derived_from(np)
153def any(a, axis=None, keepdims=False, split_every=None, out=None):
154 return reduction(
155 a,
156 chunk.any,
157 chunk.any,
158 axis=axis,
159 keepdims=keepdims,
160 dtype="bool",
161 split_every=split_every,
162 out=out,
163 )
164
165
166@derived_from(np)

Callers 15

getterFunction · 0.90
map_blocksFunction · 0.90
storeFunction · 0.90
__new__Method · 0.90
__getitem__Method · 0.90
_vindexMethod · 0.90
anyMethod · 0.90
normalize_chunksFunction · 0.90
common_blockdimFunction · 0.90
concatenateFunction · 0.90
asarrayFunction · 0.90
asanyarrayFunction · 0.90

Calls 1

reductionFunction · 0.90

Tested by 15

test_reduction_namesFunction · 0.68
test_temporary_directoryFunction · 0.68
test_io_fusion_blockwiseFunction · 0.68
test_analyzeFunction · 0.68
test_avoid_alignmentFunction · 0.68
test_concat_divisionsFunction · 0.68
test_concat_one_objectFunction · 0.68
test_groupby_apply_tasksFunction · 0.68