torch.Tensor.float_power_(exponent)
Paddle 无此 API,需要组合实现。
# PyTorch 写法 y = x.float_power_(2) # Paddle 写法 y = x.cast_(paddle.float64).pow_(2)