mindspore.ops.index_fill
- mindspore.ops.index_fill(x, axis, index, value)[source]
Fills the elements of the input x with value along the given axis and indices.
- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> x = mindspore.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]], mindspore.float32) >>> index = mindspore.tensor([0, 2], mindspore.int32) >>> value = mindspore.tensor(-2.0, mindspore.float32) >>> y = mindspore.ops.index_fill(x, 1, index, value) >>> print(y) [[-2. 2. -2.] [-2. 5. -2.] [-2. 8. -2.]]