MCPcopy Index your code
hub / github.com/dask/dask / allclose

Function allclose

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

Source from the content-addressed store, hash-verified

2102
2103@derived_from(np)
2104def allclose(arr1, arr2, rtol=1e-5, atol=1e-8, equal_nan=False):
2105 return isclose(arr1, arr2, rtol=rtol, atol=atol, equal_nan=equal_nan).all()
2106
2107
2108def variadic_choose(a, *choices):

Callers

nothing calls this directly

Calls 2

iscloseFunction · 0.85
allMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…