Creates a new tensor by applying sparse updates to individual
values or slices to the passed in tensor according to
indices. This operator is the similar to scatterNd op, except that the
udpates are scattered on an existing tensor (as opposed to a zero-tensor).
If indices contains duplicates, then we pick the last update for the index.
If an out of bound index is found on CPU, an error is returned.
Warning: There are some GPU specific semantics for this operation.
If an out of bound index is found, the index is ignored.
The order in which updates are applied is nondeterministic, so the output
will be nondeterministic if indices contains duplicates.
Creates a new tensor by applying sparse updates to individual values or slices to the passed in tensor according to indices. This operator is the similar to scatterNd op, except that the udpates are scattered on an existing tensor (as opposed to a zero-tensor).
If indices contains duplicates, then we pick the last update for the index.
If an out of bound index is found on CPU, an error is returned.
Warning: There are some GPU specific semantics for this operation.