mindspore.ops.ones_like
- mindspore.ops.ones_like(input_x)[源代码]
返回值为1的Tensor,shape和数据类型与输入相同。
参数:
input_x (Tensor) - 任意维度的Tensor。
返回:
Tensor,具有与 input_x 相同的shape和类型,并填充了1。
异常:
TypeError - input_x 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> input_x = Tensor(np.array([[0, 1], [2, 1]]).astype(np.int32)) >>> output = ops.ones_like(input_x) >>> print(output) [[1 1] [1 1]]