test_program.py 8.2 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

Y
Yu Yang 已提交
15
import unittest
16

17
import paddle
18
import paddle.fluid as fluid
19
from paddle.fluid.framework import Program, default_main_program, program_guard
Y
Yu Yang 已提交
20

21 22
paddle.enable_static()

Y
Yu Yang 已提交
23 24
main_program = default_main_program()

Y
Yu Yang 已提交
25 26 27

class TestProgram(unittest.TestCase):
    def test_program(self):
Y
Yu Yang 已提交
28
        b = main_program.current_block()
Y
Yu Yang 已提交
29 30 31
        self.assertEqual(-1, b.parent_idx)
        self.assertEqual(0, b.idx)

W
Wu Yi 已提交
32
        b = main_program._create_block()
Y
Yu Yang 已提交
33 34 35
        self.assertEqual(1, b.idx)
        self.assertEqual(0, b.parent_idx)

W
Wu Yi 已提交
36
        b = main_program._create_block()
Y
Yu Yang 已提交
37 38 39
        self.assertEqual(2, b.idx)
        self.assertEqual(1, b.parent_idx)

W
Wu Yi 已提交
40
        main_program._rollback()
Y
Yu Yang 已提交
41

Y
Yu Yang 已提交
42
        b = main_program.current_block()
Y
Yu Yang 已提交
43 44 45
        self.assertEqual(1, b.idx)
        self.assertEqual(0, b.parent_idx)

W
Wu Yi 已提交
46
        b = main_program._create_block()
Y
Yu Yang 已提交
47 48 49
        self.assertEqual(3, b.idx)
        self.assertEqual(1, b.parent_idx)

W
Wu Yi 已提交
50
        main_program._rollback()
Y
Yu Yang 已提交
51
        b = main_program.current_block()
Y
Yu Yang 已提交
52 53 54
        self.assertEqual(1, b.idx)
        self.assertEqual(0, b.parent_idx)

Y
Yu Yang 已提交
55 56 57
    def test_program_clone(self):
        prog = Program()

58 59 60
        x = prog.global_block().create_var(
            name='X', shape=[1000, 784], dtype='float32'
        )
Y
Yu Yang 已提交
61

62 63 64
        y = prog.global_block().create_var(
            name='Y', shape=[784, 100], dtype='float32'
        )
Y
Yu Yang 已提交
65
        out = prog.global_block().create_var(name='Out', dtype='float32')
66 67 68
        prog.global_block().append_op(
            type="mul", inputs={'X': [x], 'Y': [y]}, outputs={'Out': [out]}
        )
Y
Yu Yang 已提交
69 70 71

        # FIXME(yuyang18): We manual compare the output string, since the order
        # of variable could be changed.
72 73
        print(prog)
        print(prog.clone())
Y
Yu Yang 已提交
74

75 76 77
    def test_parse_program_from_string(self):
        prog = Program()

78 79 80
        x = prog.global_block().create_var(
            name='X', shape=[1000, 784], dtype='float32'
        )
81

82 83 84
        y = prog.global_block().create_var(
            name='Y', shape=[784, 100], dtype='float32'
        )
85
        out = prog.global_block().create_var(name='Out', dtype='float32')
86 87 88
        prog.global_block().append_op(
            type="mul", inputs={'X': [x], 'Y': [y]}, outputs={'Out': [out]}
        )
89 90 91 92

        binary_str = prog.desc.serialize_to_string()
        prog_restored = Program.parse_from_string(binary_str)

93 94
        print(prog)
        print(prog_restored)
95

96 97 98
    def test_program_clone_with_parameter(self):
        main_program = Program()
        startup_program = Program()
99
        with program_guard(main_program, startup_program):
G
GGBond8488 已提交
100
            d = paddle.static.data(name='x', shape=[-1, 784], dtype='float32')
C
Charles-hit 已提交
101 102
            hidden = paddle.static.nn.fc(x=d, size=100)
            paddle.static.nn.fc(x=hidden, size=100)
103 104 105 106

        new_program = main_program.clone()
        self.assertNotEqual(0, len(new_program.blocks[0].all_parameters()))

107 108 109
    def test_program_all_parameters(self):
        program = fluid.default_main_program()
        data = fluid.data(name='x', shape=[None, 13], dtype='float32')
C
Charles-hit 已提交
110
        hidden = paddle.static.nn.fc(x=data, size=10)
111
        loss = paddle.mean(hidden)
112 113 114 115 116 117 118 119
        fluid.optimizer.SGD(learning_rate=0.01).minimize(loss)

        # NOTE: here the parameters are fc_0.w_0 and fc_0.b_0
        param_list = program.all_parameters()
        self.assertEqual(len(param_list), 2)
        self.assertEqual(param_list[0].name, "fc_0.w_0")
        self.assertEqual(param_list[1].name, "fc_0.b_0")

120 121 122
    def test_prune_with_input_type_error(self):
        program = fluid.default_main_program()
        feed_var_names = [2, 3, 4]
123 124 125
        self.assertRaises(
            ValueError, program._prune_with_input, feed_var_names, []
        )
126 127 128 129 130 131 132 133 134

    def test_random_seed_error(self):
        program = fluid.default_main_program()
        with self.assertRaises(ValueError):
            program.random_seed = "seed"

    def test_copy_info_from_error(self):
        program = fluid.default_main_program()
        self.assertRaises(TypeError, program._copy_param_info_from, "program")
135 136 137
        self.assertRaises(
            TypeError, program._copy_dist_param_info_from, "program"
        )
138

Y
Yu Yang 已提交
139

L
Leo Chen 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
def build_program():
    main_program = paddle.static.Program()
    startuo_program = paddle.static.Program()
    with paddle.utils.unique_name.guard():
        with paddle.static.program_guard(main_program, startuo_program):
            x = paddle.static.data(name='x', shape=[3, 2, 1])
            out = paddle.static.nn.fc(x=x, size=1, num_flatten_dims=2)
    return main_program


class TestProgramProto(unittest.TestCase):
    def test_update_op(self):
        program = build_program()
        a = program.desc.serialize_to_string()
        program.current_block().ops[0]._set_attr('use_mkldnn', True)
        self.assertTrue(program.desc.need_update())
        b = program.desc.serialize_to_string()
        self.assertFalse(a == b)

    def test_update_var(self):
        program = build_program()
        a = program.desc.serialize_to_string()
        program.current_block().var("x").desc.set_stop_gradient(False)
        self.assertTrue(program.desc.need_update())
        b = program.desc.serialize_to_string()
        self.assertFalse(a == b)

    def test_update_var_attr(self):
        program = build_program()
        a = program.desc.serialize_to_string()
        program.current_block().var("x").desc._set_attr("a", 1)
171
        self.assertTrue(program.desc.need_update())
L
Leo Chen 已提交
172
        b = program.desc.serialize_to_string()
173
        self.assertFalse(a == b)
L
Leo Chen 已提交
174 175


L
Leo Chen 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
class TestProgramHash(unittest.TestCase):
    def build_program(self):
        main_program = paddle.static.Program()
        startuo_program = paddle.static.Program()
        with paddle.utils.unique_name.guard():
            with paddle.static.program_guard(main_program, startuo_program):
                x = paddle.static.data(name='x', shape=[3, 2, 1])
                out = paddle.static.nn.fc(x=x, size=1, num_flatten_dims=2)
        return main_program

    def test_program_need_update(self):
        program = self.build_program()
        self.assertTrue(program.desc.need_update())
        program.desc.flush()
        self.assertFalse(program.desc.need_update())

    def test_program_hash_equal(self):
        programs = []
        for i in range(2):
            programs.append(self.build_program())
        program1, program2 = programs[0], programs[1]
        # why not write as below?
        # since the callstack attribute are not equal
199 200
        # program1 = self.build_program()
        # program2 = self.build_program()
L
Leo Chen 已提交
201 202 203 204 205 206 207

        self.assertTrue(program1.desc.need_update())
        self.assertTrue(program2.desc.need_update())
        # two program with same content
        self.assertFalse(id(program1) == id(program2))
        # print(program1, program2)
        self.assertTrue(
208 209
            program1.desc.cached_hash_str() == program2.desc.cached_hash_str()
        )
L
Leo Chen 已提交
210 211 212 213 214 215 216 217 218

        self.assertFalse(program1.desc.need_update())
        self.assertFalse(program2.desc.need_update())

    def test_program_clone(self):
        program = self.build_program()
        program_clone = program.clone()

        self.assertFalse(id(program) == id(program_clone))
219 220 221 222
        self.assertTrue(
            program.desc.cached_hash_str()
            == program_clone.desc.cached_hash_str()
        )
L
Leo Chen 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236

    def test_program_update(self):
        program = self.build_program()
        hash1 = program.desc.cached_hash_str()
        id1 = id(program)
        # change mul's attr
        program.current_block().ops[0]._set_attr('use_mkldnn', True)
        program.current_block().ops[0]._set_attr('scale_x', 2.0)
        hash2 = program.desc.cached_hash_str()
        id2 = id(program)
        self.assertTrue(id1 == id2)
        self.assertFalse(hash1 == hash2)


Y
Yu Yang 已提交
237 238
if __name__ == '__main__':
    unittest.main()