aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/batch_scatter_ops_test.py
Commit message (Collapse)AuthorAge
* Delete dead code in batch_scatter_ops_test.Gravatar A. Unique TensorFlower2018-10-10
| | | | PiperOrigin-RevId: 216483746
* Add `batch_scatter_update`, analogous to `batch_gather`.Gravatar Adria Puigdomenech2018-08-21
This operation computes: ref[i_1, ..., i_n, indices[i_1, ..., i_n, j]] = updates[i_1, ..., i_n, j] That is, it assumes that `ref`, `indices` and `updates` have a series of leading dimensions that are the same for all of them, and the updates are performed on the last dimension of indices. PiperOrigin-RevId: 209566652