torch.logdet(input)
Paddle 无此 API,需要组合实现。
# PyTorch 写法 y = torch.logdet(input) # Paddle 写法 y = paddle.log(paddle.linalg.det(input))