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 20
import paddle.fluid.layers as layers
from paddle.fluid.framework import Program, default_main_program, program_guard
Y
Yu Yang 已提交
21

22 23
paddle.enable_static()

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

Y
Yu Yang 已提交
26 27 28

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

94 95
        print(prog)
        print(prog_restored)
96

97 98 99
    def test_program_clone_with_parameter(self):
        main_program = Program()
        startup_program = Program()
100 101 102 103
        with program_guard(main_program, startup_program):
            d = layers.data(name='x', shape=[784], dtype='float32')
            hidden = layers.fc(input=d, size=100)
            layers.fc(input=hidden, size=100)
104 105 106 107

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

108 109 110 111
    def test_program_all_parameters(self):
        program = fluid.default_main_program()
        data = fluid.data(name='x', shape=[None, 13], dtype='float32')
        hidden = fluid.layers.fc(input=data, size=10)
112
        loss = paddle.mean(hidden)
113 114 115 116 117 118 119 120
        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")

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

    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")
136 137 138
        self.assertRaises(
            TypeError, program._copy_dist_param_info_from, "program"
        )
139

Y
Yu Yang 已提交
140

L
Leo Chen 已提交
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 171
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)
172
        self.assertTrue(program.desc.need_update())
L
Leo Chen 已提交
173
        b = program.desc.serialize_to_string()
174
        self.assertFalse(a == b)
L
Leo Chen 已提交
175 176


L
Leo Chen 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
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
200 201
        # program1 = self.build_program()
        # program2 = self.build_program()
L
Leo Chen 已提交
202 203 204 205 206 207 208

        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(
209 210
            program1.desc.cached_hash_str() == program2.desc.cached_hash_str()
        )
L
Leo Chen 已提交
211 212 213 214 215 216 217 218 219

        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))
220 221 222 223
        self.assertTrue(
            program.desc.cached_hash_str()
            == program_clone.desc.cached_hash_str()
        )
L
Leo Chen 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237

    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 已提交
238 239
if __name__ == '__main__':
    unittest.main()