aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/scatter_ops_test.py
blob: dd645819a3ab01e1d89234e2ab68ec2c0967de19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""Tests for tensorflow.ops.tf.scatter."""
import tensorflow.python.platform

import numpy as np
import tensorflow as tf


class ScatterTest(tf.test.TestCase):

  def _VariableRankTest(self, np_scatter, tf_scatter):
    np.random.seed(8)
    with self.test_session():
      for indices_shape in (), (2,), (2, 3), (2, 3, 4):
        for extra_shape in (), (5,), (5, 6):
          # Generate random indices with no duplicates for easy numpy comparison
          size = np.prod(indices_shape, dtype=np.int32)
          indices = np.arange(2 * size)
          np.random.shuffle(indices)
          indices = indices[:size].reshape(indices_shape)
          updates = np.random.randn(*(indices_shape + extra_shape))
          old = np.random.randn(*((2 * size,) + extra_shape))
        # Scatter via numpy
        new = old.copy()
        np_scatter(new, indices, updates)
        # Scatter via tensorflow
        ref = tf.Variable(old)
        ref.initializer.run()
        tf_scatter(ref, indices, updates).eval()
        # Compare
        self.assertAllClose(ref.eval(), new)

  def testVariableRankUpdate(self):
    def update(ref, indices, updates):
      ref[indices] = updates
    self._VariableRankTest(update, tf.scatter_update)

  def testVariableRankAdd(self):
    def add(ref, indices, updates):
      ref[indices] += updates
    self._VariableRankTest(add, tf.scatter_add)

  def testVariableRankSub(self):
    def sub(ref, indices, updates):
      ref[indices] -= updates
    self._VariableRankTest(sub, tf.scatter_sub)


if __name__ == "__main__":
  tf.test.main()