返回输入tensor的深拷贝。
input_x (Tensor) - 输入tensor。
Tensor
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> import mindspore >>> input = mindspore.tensor([[0, 1], [2, 1]], dtype=mindspore.int32) >>> output = mindspore.ops.deepcopy(input) >>> print(output) [[0 1] [2 1]]