dpnp.tensor.concat¶
- dpnp.tensor.concat(arrays, /, *, axis=0)[source]¶
Joins a sequence of arrays along an existing axis.
- Parameters:
arrays ({list of usm_ndarrays, tuple of usm_ndarrays}) -- Input arrays to join. The arrays must have the same shape, except in the dimension specified by axis.
axis ({None, int}, optional) --
Axis along which the arrays will be joined. If axis is None, arrays must be flattened before concatenation. If axis is negative, it is understood as being counted from the last dimension.
Default:
0.
- Returns:
out (usm_ndarray) -- An output array containing the concatenated
values. The output array data type is determined by Type Promotion Rules of array API.