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

Function test_nonzero_method

dask/array/tests/test_routines.py:2124–2136  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2122
2123
2124def test_nonzero_method():
2125 for shape, chunks in [(0, ()), ((0, 0), (0, 0)), ((15, 16), (4, 5))]:
2126 x = np.random.default_rng().integers(10, size=shape)
2127 d = da.from_array(x, chunks=chunks)
2128
2129 x_nz = x.nonzero()
2130 d_nz = d.nonzero()
2131
2132 assert isinstance(d_nz, type(x_nz))
2133 assert len(d_nz) == len(x_nz)
2134
2135 for i in range(len(x_nz)):
2136 assert_eq(d_nz[i], x_nz[i])
2137
2138
2139def test_unravel_index_empty():

Callers

nothing calls this directly

Calls 3

assert_eqFunction · 0.90
nonzeroMethod · 0.80
integersMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…