快捷方式

torch.ldexp

torch.ldexp(input, other, *, out=None) Tensor

input 乘以 2 ** other

outi=inputi2iother\text{{out}}_i = \text{{input}}_i * 2^\text{{other}}_i

通常此函数用于通过将 input 中的尾数乘以由 other 中的指数创建的 2 的整数次幂来构建浮点数。

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

  • other (张量) – 指数张量,通常为整数。

关键字参数

out (张量, 可选) – 输出张量。

示例

>>> torch.ldexp(torch.tensor([1.]), torch.tensor([1]))
tensor([2.])
>>> torch.ldexp(torch.tensor([1.0]), torch.tensor([1, 2, 3, 4]))
tensor([ 2.,  4.,  8., 16.])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

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

查看资源