mindspore.ops.Fill
- class mindspore.ops.Fill[源代码]
创建一个指定shape的Tensor,并用指定值填充。
更多参考详见
mindspore.ops.fill()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> fill = ops.Fill() >>> output = fill(mindspore.float32, (2, 2), 1) >>> print(output) [[1. 1.] [1. 1.]] >>> output = fill(mindspore.float32, (3, 3), 0) >>> print(output) [[0. 0. 0.] [0. 0. 0.] [0. 0. 0.]]