MCPcopy
hub / github.com/dask/dask / vstack

Function vstack

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

Source from the content-addressed store, hash-verified

129
130@derived_from(np)
131def vstack(tup, allow_unknown_chunksizes=False):
132 if isinstance(tup, Array):
133 raise NotImplementedError(
134 "``vstack`` expects a sequence of arrays as the first argument"
135 )
136
137 tup = tuple(atleast_2d(x) for x in tup)
138 return concatenate(tup, axis=0, allow_unknown_chunksizes=allow_unknown_chunksizes)
139
140
141@derived_from(np)

Callers 1

_concat_cupy_sparseFunction · 0.85

Calls 2

concatenateFunction · 0.90
atleast_2dFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…