aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/division_future_test.py
blob: b9b3b13b6839af87dd164a199d186690e90582ae (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
"""Tests for division with division imported from __future__.

This file should be exactly the same as division_past_test.py except
for the __future__ division line.
"""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import tensorflow.python.platform

import numpy as np
import tensorflow as tf


class DivisionTestCase(tf.test.TestCase):

  def testDivision(self):
    """Test all the different ways to divide."""
    values = [1, 2, 7, 11]
    functions = (lambda x: x), tf.constant
    # TODO(irving): Test int8, int16 once we support casts for those.
    dtypes = np.int32, np.int64, np.float32, np.float64

    def check(x, y):
      if isinstance(x, tf.Tensor):
        x = x.eval()
      if isinstance(y, tf.Tensor):
        y = y.eval()
      self.assertEqual(x.dtype, y.dtype)
      self.assertEqual(x, y)
    with self.test_session():
      for dtype in dtypes:
        for x in map(dtype, values):
          for y in map(dtype, values):
            for fx in functions:
              for fy in functions:
                tf_x = fx(x)
                tf_y = fy(y)
                div = x / y
                tf_div = tf_x / tf_y
                check(div, tf_div)
                floordiv = x // y
                tf_floordiv = tf_x // tf_y
                check(floordiv, tf_floordiv)


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