快捷方式

torch.bitwise_right_shift

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

计算 input 右边按位算术右移 other 位的结果。输入张量必须为整数类型。此运算符支持 广播到共同形状类型提升。在任何情况下,如果右操作数的值为负数,或者大于或等于提升后的左操作数的位数,则行为未定义。

应用的运算为

outi=inputi>>otheri\text{out}_i = \text{input}_i >> \text{other}_i
参数
  • input (Tensor or Scalar) – 第一个输入张量

  • other (Tensor or Scalar) – 第二个输入张量

关键字参数

out (Tensor, optional) – 输出张量。

示例

>>> torch.bitwise_right_shift(torch.tensor([-2, -7, 31], dtype=torch.int8), torch.tensor([1, 0, 3], dtype=torch.int8))
tensor([-1, -7,  3], dtype=torch.int8)

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源