torch.Tensor.is_pinned()
返回张量是否在固定内存上; Paddle 无此 API,需要组合实现。
# PyTorch 写法 y = a.is_pinned(b) # Paddle 写法 y = 'pinned' in str(a.place)