快捷方式

torch.broadcast_to

torch.broadcast_to(input, shape) Tensor

input 广播到形状 shape。等效于调用 input.expand(shape)。有关详细信息,请参见 expand()

参数
  • input (Tensor) – 输入张量。

  • shape (list、tuple 或 torch.Size) – 新形状。

示例

>>> x = torch.tensor([1, 2, 3])
>>> torch.broadcast_to(x, (3, 3))
tensor([[1, 2, 3],
        [1, 2, 3],
        [1, 2, 3]])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获得面向初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源