mindspore.ops.deepcopy

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

返回输入Tensor的深拷贝。

参数:
  • input_x (Tensor) - 输入Tensor,shape为 \((x_1, x_2, ..., x_R)\)

返回:

Tensor,input_x 的深拷贝。

异常:
  • TypeError - 如果 input_x 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> from mindspore import Tensor, ops
>>> input = Tensor([[0, 1], [2, 1]], dtype=mindspore.int32)
>>> output = ops.deepcopy(input)
>>> print(output)
[[0 1]
[2 1]]