mindspore.ops.stack
- mindspore.ops.stack(input_x, axis=0)[source]
Stacks a list of tensors in specified axis.
Stacks the list of input tensors with the same rank R, output is a tensor of rank (R+1).
Given input tensors of shape \((x_1, x_2, ..., x_R)\). Set the number of input tensors as N. If \(0 \le axis\), the shape of the output tensor is \((x_1, x_2, ..., x_{axis}, N, x_{axis+1}, ..., x_R)\).
- Parameters
- Returns
Tensor. A stacked Tensor with the same type as input_x.
- Raises
TypeError – If the data types of elements in input_x are not the same.
ValueError – If the length of input_x is not greater than 1; or if axis is out of the range [-(R+1), R+1); or if the shapes of elements in input_x are not the same.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> input_x1 = Tensor(np.array([0, 1]).astype(np.float32)) >>> input_x2 = Tensor(np.array([2, 3]).astype(np.float32)) >>> output = ops.stack((input_x1, input_x2), 0) >>> print(output) [[0. 1.] [2. 3.]]