[ 仅参数名不一致 ]torch.bitwise_or

torch.bitwise_or

torch.bitwise_or(input,
                 other,
                 *,
                 out=None)

paddle.bitwise_or

paddle.bitwise_or(x,
                  y,
                  out=None,
                  name=None)

两者功能一致且参数用法一致,仅参数名不一致,具体如下:

参数映射

PyTorch PaddlePaddle 备注
input x 表示输入的 Tensor ,仅参数名不一致。
other y 表示输入的 Tensor ,仅参数名不一致。
out out 表示输出的 Tensor。