MCPcopy
hub / github.com/dask/dask / dstack

Function dstack

dask/array/routines.py:159–166  ·  view source on GitHub ↗
(tup, allow_unknown_chunksizes=False)

Source from the content-addressed store, hash-verified

157
158@derived_from(np)
159def dstack(tup, allow_unknown_chunksizes=False):
160 if isinstance(tup, Array):
161 raise NotImplementedError(
162 "``dstack`` expects a sequence of arrays as the first argument"
163 )
164
165 tup = tuple(atleast_3d(x) for x in tup)
166 return concatenate(tup, axis=2, allow_unknown_chunksizes=allow_unknown_chunksizes)
167
168
169@derived_from(np)

Callers

nothing calls this directly

Calls 2

concatenateFunction · 0.90
atleast_3dFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…