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

Function allclose

dask/array/routines.py:2056–2057  ·  view source on GitHub ↗
(arr1, arr2, rtol=1e-5, atol=1e-8, equal_nan=False)

Source from the content-addressed store, hash-verified

2054
2055@derived_from(np)
2056def allclose(arr1, arr2, rtol=1e-5, atol=1e-8, equal_nan=False):
2057 return isclose(arr1, arr2, rtol=rtol, atol=atol, equal_nan=equal_nan).all()
2058
2059
2060def variadic_choose(a, *choices):

Callers

nothing calls this directly

Calls 2

iscloseFunction · 0.85
allMethod · 0.45

Tested by

no test coverage detected