(tup, allow_unknown_chunksizes=False)
| 157 | |
| 158 | @derived_from(np) |
| 159 | def 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) |
nothing calls this directly
no test coverage detected
searching dependent graphs…