mindspore.Tensor.copy
- Tensor.copy()[source]
- Return a copy of the tensor. - Note - The current implementation does not support order argument. - Returns
- Copied tensor. 
 - Supported Platforms:
- Ascend- GPU- CPU
 - Examples - >>> import numpy as np >>> from mindspore import Tensor >>> a = Tensor(np.ones((3,3)).astype("float32")) >>> output = a.copy() >>> print(output) [[1. 1. 1.] [1. 1. 1.] [1. 1. 1.]]