mindspore.ops.bitwise_right_shift ================================= .. py:function:: mindspore.ops.bitwise_right_shift(input, other) 逐元素对输入 `input` 进行右移位运算, 移动的位数由 `other` 指定。 .. math:: \begin{aligned} &out_{i} =input_{i} >> other_{i} \end{aligned} 参数: - **input** (Union[Tensor, int, bool]) - 被右移的输入tensor。 - **other** (Union[Tensor, int, bool]) - 右移的位数。 返回: Tensor