mindspore.ops.zeros

mindspore.ops.zeros(size, dtype=None)[source]

Creates a tensor filled with 0 with shape described by shape and fills it with value 0 in type of dtype.

Parameters
  • size (Union[tuple[int], int, Tensor]) – The specified shape of output tensor. Only positive integer or tuple or Tensor containing positive integers are allowed. If it is a Tensor, it must be a 0-D or 1-D Tensor with int32 or int64 dtypes.

  • dtype (mindspore.dtype, optional) – The specified type of output tensor. If dtype is None, mindspore.float32 will be used. Default: None.

Returns

Tensor, has the same dtype and size as input.

Raises

TypeError – If size is not tuple, int or Tensor.

Supported Platforms:

Ascend GPU CPU

Examples

>>> output = ops.zeros((2, 2), mindspore.float32)
>>> print(output)
[[0. 0.]
 [0. 0.]]