torch.Tensor.is_signed()
Paddle 无此 API,需要组合实现。
# PyTorch 写法 y = x.is_signed() # Paddle 写法 y = x.dtype not in [paddle.uint8]