test_op_name_conflict.py 1.8 KB
Newer Older
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
#   Copyright (c) 2018 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.

import paddle.fluid as fluid
import numpy as np
import unittest


class TestOpNameConflict(unittest.TestCase):
    def test_conflict(self):
        main = fluid.Program()
        startup = fluid.Program()
        with fluid.unique_name.guard():
            with fluid.program_guard(main, startup):
                x = fluid.data(name="x", shape=[1], dtype='float32')
                y = fluid.data(name="y", shape=[1], dtype='float32')
                z = fluid.data(name="z", shape=[1], dtype='float32')

                m = fluid.layers.elementwise_add(x, y, name="add")
                n = fluid.layers.elementwise_add(y, z, name="add")
                p = m + n

                place = fluid.CPUPlace()
                exe = fluid.Executor(place)
36 37 38 39 40 41 42 43
                m_v, n_v, p_v = exe.run(
                    feed={
                        "x": np.ones((1), "float32") * 2,
                        "y": np.ones((1), "float32") * 3,
                        "z": np.ones((1), "float32") * 5,
                    },
                    fetch_list=[m, n, p],
                )
44 45 46 47 48 49 50 51

                self.assertEqual(m_v[0], 5.0)
                self.assertEqual(n_v[0], 8.0)
                self.assertEqual(p_v[0], 13.0)


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