aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/gather_op_test.py
blob: 39e97531d2501e03a1642003c9620e248bd47cbd (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""Tests for tensorflow.ops.tf.gather."""
import tensorflow.python.platform

import numpy as np
import tensorflow as tf


class GatherTest(tf.test.TestCase):

  def testScalar1D(self):
    with self.test_session():
      params = tf.constant([0, 1, 2, 3, 7, 5])
      indices = tf.constant(4)
      gather_t = tf.gather(params, indices)
      gather_val = gather_t.eval()
    self.assertAllEqual(7, gather_val)
    self.assertEqual([], gather_t.get_shape())

  def testScalar2D(self):
    with self.test_session():
      params = tf.constant([[0, 1, 2], [3, 4, 5], [6, 7, 8],
                                     [9, 10, 11], [12, 13, 14]])
      indices = tf.constant(2)
      gather_t = tf.gather(params, indices)
      gather_val = gather_t.eval()
    self.assertAllEqual([6, 7, 8], gather_val)
    self.assertEqual([3], gather_t.get_shape())

  def testSimpleTwoD32(self):
    with self.test_session():
      params = tf.constant([[0, 1, 2], [3, 4, 5], [6, 7, 8],
                                     [9, 10, 11], [12, 13, 14]])
      indices = tf.constant([0, 4, 0, 2])
      gather_t = tf.gather(params, indices)
      gather_val = gather_t.eval()
    self.assertAllEqual([[0, 1, 2], [12, 13, 14], [0, 1, 2], [6, 7, 8]],
                        gather_val)
    self.assertEqual([4, 3], gather_t.get_shape())

  def testHigherRank(self):
    np.random.seed(1)
    shape = (4, 3, 2)
    params = np.random.randn(*shape)
    indices = np.random.randint(shape[0], size=15).reshape(3, 5)
    with self.test_session():
      tf_params = tf.constant(params)
      tf_indices = tf.constant(indices)
      gather = tf.gather(tf_params, tf_indices)
      self.assertAllEqual(params[indices], gather.eval())
      self.assertEqual(indices.shape + params.shape[1:], gather.get_shape())
      # Test gradients
      gather_grad = np.random.randn(*gather.get_shape().as_list())
      params_grad, indices_grad = tf.gradients(gather, [tf_params, tf_indices],
                                               gather_grad)
      self.assertEqual(indices_grad, None)
      self.assertEqual(type(params_grad), tf.IndexedSlices)
      params_grad = tf.convert_to_tensor(params_grad)
      correct_params_grad = np.zeros(shape)
      for i, g in zip(indices.ravel(), gather_grad.reshape((15,) + shape[1:])):
        correct_params_grad[i] += g
      self.assertAllEqual(correct_params_grad, params_grad.eval())

  def testUnknownIndices(self):
    params = tf.constant([[0, 1, 2]])
    indices = tf.placeholder(tf.int32)
    gather_t = tf.gather(params, indices)
    self.assertEqual(None, gather_t.get_shape())


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