torch.Tensor.igammac(other)
paddle.Tensor.gammaincc(y, name=None)
两者功能一致且参数用法一致,仅参数名不一致,具体如下:
# PyTorch 写法 out = x.igammac(y) # Paddle 写法 out = x.gammaincc(y)