test_assert_op.py 3.3 KB
Newer Older
H
Huihuang Zheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2020 PaddlePaddle 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.

15
import paddle
H
Huihuang Zheng 已提交
16 17 18 19 20 21
import paddle.fluid as fluid
import paddle.fluid.layers as layers
import unittest


class TestAssertOp(unittest.TestCase):
22

H
Huihuang Zheng 已提交
23 24 25 26 27 28 29 30 31
    def run_network(self, net_func):
        main_program = fluid.Program()
        startup_program = fluid.Program()
        with fluid.program_guard(main_program, startup_program):
            net_func()
        exe = fluid.Executor()
        exe.run(main_program)

    def test_assert_true(self):
32

H
Huihuang Zheng 已提交
33
        def net_func():
34 35 36
            condition = layers.fill_constant(shape=[1],
                                             dtype='bool',
                                             value=True)
H
Huihuang Zheng 已提交
37 38 39 40 41
            layers.Assert(condition, [])

        self.run_network(net_func)

    def test_assert_false(self):
42

H
Huihuang Zheng 已提交
43
        def net_func():
44 45 46
            condition = layers.fill_constant(shape=[1],
                                             dtype='bool',
                                             value=False)
H
Huihuang Zheng 已提交
47 48
            layers.Assert(condition)

49
        with self.assertRaises(ValueError):
H
Huihuang Zheng 已提交
50 51 52
            self.run_network(net_func)

    def test_assert_cond_numel_error(self):
53

H
Huihuang Zheng 已提交
54
        def net_func():
55 56 57
            condition = layers.fill_constant(shape=[1, 2],
                                             dtype='bool',
                                             value=True)
H
Huihuang Zheng 已提交
58 59
            layers.Assert(condition, [])

60
        with self.assertRaises(ValueError):
H
Huihuang Zheng 已提交
61 62 63
            self.run_network(net_func)

    def test_assert_print_data(self):
64

H
Huihuang Zheng 已提交
65 66 67 68 69 70 71
        def net_func():
            zero = layers.fill_constant(shape=[1], dtype='int64', value=0)
            one = layers.fill_constant(shape=[1], dtype='int64', value=1)
            condition = layers.less_than(one, zero)  # False
            layers.Assert(condition, [zero, one])

        print("test_assert_print_data")
72
        with self.assertRaises(ValueError):
H
Huihuang Zheng 已提交
73 74 75
            self.run_network(net_func)

    def test_assert_summary(self):
76

H
Huihuang Zheng 已提交
77 78 79 80 81 82
        def net_func():
            x = layers.fill_constant(shape=[10], dtype='float32', value=2.0)
            condition = layers.reduce_max(x) < 1.0
            layers.Assert(condition, (x, ), 5)

        print("test_assert_summary")
83
        with self.assertRaises(ValueError):
H
Huihuang Zheng 已提交
84 85 86
            self.run_network(net_func)

    def test_assert_summary_greater_than_size(self):
87

H
Huihuang Zheng 已提交
88 89 90 91 92 93
        def net_func():
            x = layers.fill_constant(shape=[2, 3], dtype='float32', value=2.0)
            condition = layers.reduce_max(x) < 1.0
            layers.Assert(condition, [x], 10, name="test")

        print("test_assert_summary_greater_than_size")
94
        with self.assertRaises(ValueError):
H
Huihuang Zheng 已提交
95 96 97 98
            self.run_network(net_func)


if __name__ == '__main__':
99
    paddle.enable_static()
H
Huihuang Zheng 已提交
100
    unittest.main()