mindspore.ops.deepcopy

查看源文件
mindspore.ops.deepcopy(input_x)[源代码]

返回输入tensor的深拷贝。

参数:
  • input_x (Tensor) - 输入tensor。

返回:

Tensor

支持平台:

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]]