megengine.functional.reshape¶
- reshape(inp, target_shape)[源代码]¶
在不改变数据的情况下更改 Tensor 的形状。
- 参数
- 返回类型
- 返回
输出 Tensor 和输入 Tensor 拥有相同的数据类型。
实际案例
>>> x = F.arange(12) >>> x Tensor([ 0. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11.], device=xpux:0) >>> F.reshape(x, (3, 4)) Tensor([[ 0. 1. 2. 3.] [ 4. 5. 6. 7.] [ 8. 9. 10. 11.]], device=xpux:0) >>> F.reshape(x, (2, -1)) Tensor([[ 0. 1. 2. 3. 4. 5.] [ 6. 7. 8. 9. 10. 11.]], device=xpux:0)