mindspore.ops.fill
- mindspore.ops.fill(type, shape, value)[source]
Create a Tensor of the specified shape and fill it with the specified value.
- Parameters
- Returns
Tensor.
- Raises
TypeError – If shape is not a tuple or a tensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> from mindspore import ops >>> output = ops.fill(mindspore.float32, (2, 2), 1) >>> print(output) [[1. 1.] [1. 1.]] >>> output = ops.fill(mindspore.float32, (3, 3), 0) >>> print(output) [[0. 0. 0.] [0. 0. 0.] [0. 0. 0.]]