aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/operators/control_flow_test.py
blob: bb214b6f169b66769e09163ebb20ac095319719b (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Tests for control_flow module."""

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

from tensorflow.python.autograph.operators import control_flow
from tensorflow.python.data.ops import dataset_ops
from tensorflow.python.framework import constant_op
from tensorflow.python.framework import dtypes
from tensorflow.python.ops import math_ops
from tensorflow.python.platform import test


class ForLoopTest(test.TestCase):

  def test_tensor(self):
    s = control_flow.for_stmt(
        constant_op.constant([1, 2, 3, 4]),
        extra_test=lambda s: True,
        body=lambda i, s: (s + i,),
        init_state=(0,))
    with self.cached_session() as sess:
      self.assertEqual((10,), sess.run(s))

  def test_python(self):
    s = control_flow.for_stmt(
        range(5),
        extra_test=lambda s: True,
        body=lambda i, s: (s + i,),
        init_state=(0,))
    self.assertEqual(10, s)

  def test_dataset(self):
    to_int32 = lambda i: math_ops.cast(i, dtypes.int32)
    s = control_flow.for_stmt(
        dataset_ops.Dataset.range(5).map(to_int32),
        extra_test=lambda s: True,
        body=lambda i, s: (s + i,),
        init_state=(0,))
    with self.cached_session() as sess:
      self.assertEqual((10,), sess.run(s))


class WhileLoopTest(test.TestCase):

  def test_tensor(self):
    n = constant_op.constant(5)
    results = control_flow.while_stmt(
        test=lambda i, s: i < n,
        body=lambda i, s: (i + 1, s + i,),
        init_state=(0, 0),
        extra_deps=(n,))
    with self.cached_session() as sess:
      self.assertEqual((5, 10), sess.run(results))

  def test_python(self):
    n = 5
    results = control_flow.while_stmt(
        test=lambda i, s: i < n,
        body=lambda i, s: (i + 1, s + i),
        init_state=(0, 0),
        extra_deps=(n,))
    self.assertEqual((5, 10), results)


class IfStmtTest(test.TestCase):

  def test_tensor(self):
    def test_if_stmt(cond):
      return control_flow.if_stmt(
          cond=cond,
          body=lambda: 1,
          orelse=lambda: -1)

    with self.cached_session() as sess:
      self.assertEqual(1, sess.run(test_if_stmt(constant_op.constant(True))))
      self.assertEqual(-1, sess.run(test_if_stmt(constant_op.constant(False))))

  def test_python(self):
    self.assertEqual(1, control_flow.if_stmt(True, lambda: 1, lambda: -1))
    self.assertEqual(-1, control_flow.if_stmt(False, lambda: 1, lambda: -1))


if __name__ == '__main__':
  test.main()