openvino.runtime.opset15.scatter_nd_update#

openvino.runtime.opset15.scatter_nd_update(data: Node | int | float | ndarray, indices: Node | int | float | ndarray, updates: Node | int | float | ndarray, reduction: Literal['none', 'sum', 'sub', 'prod', 'min', 'max'] | None = None, name: str | None = None) Node#

Return a node which performs ScatterNDUpdate.

Parameters:
  • data – Node input representing the tensor to be updated.

  • indices – Node input representing the indices at which updates will be applied.

  • updates – Node input representing the updates to be applied.

  • reduction – The type of operation to perform on the inputs. One of “none”, “sum”, “sub”, “prod”, “min”, “max”.

  • name – Optional name for the output node.

Returns:

New node performing the ScatterNDUpdate.