test_op_name_conflict.py 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#   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):
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
    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)
                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])

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

    def test_layers(self):
        main = fluid.Program()
        startup = fluid.Program()
        with fluid.unique_name.guard():
            with fluid.program_guard(main, startup):
                place = fluid.CUDAPlace(0) if fluid.core.is_compiled_with_cuda(
                ) else fluid.CPUPlace()
                exe = fluid.Executor(place)

57 58 59 60 61 62 63 64 65 66
                data = fluid.data(name='data',
                                  shape=[None, 1, 2, 2],
                                  dtype='float32')
                tensor = fluid.data(name='tensor',
                                    shape=[None, 32, 64],
                                    dtype='float32')
                x = fluid.data(name='x',
                               shape=[None, 1],
                               dtype='float32',
                               lod_level=1)
67 68 69 70 71 72 73 74 75

                input_scale = fluid.layers.create_parameter(
                    shape=[1],
                    dtype="float32",
                    default_initializer=fluid.initializer.Constant(2.0))
                input_bias = fluid.layers.create_parameter(
                    shape=[1],
                    dtype="float32",
                    default_initializer=fluid.initializer.Constant(0.5))
76 77 78 79 80 81
                out_affine = fluid.layers.affine_channel(data,
                                                         scale=input_scale,
                                                         bias=input_bias)
                out_similarity = fluid.layers.similarity_focus(input=data,
                                                               axis=1,
                                                               indexes=[0])
82 83 84 85 86 87 88 89 90 91
                position_tensor = fluid.layers.add_position_encoding(
                    input=tensor, alpha=1.0, beta=1.0)
                x_reversed = fluid.layers.sequence_reverse(x)

                exe.run(fluid.default_startup_program())
                test_program = fluid.default_main_program().clone(for_test=True)

                x_d = fluid.create_lod_tensor(
                    np.array([[1.1], [2.2], [3.3], [4.4]]).astype('float32'),
                    [[1, 3]], place)
92 93 94 95 96 97 98 99 100 101 102 103 104 105
                outs = exe.run(test_program,
                               fetch_list=[
                                   out_affine, out_similarity, position_tensor,
                                   x_reversed
                               ],
                               feed={
                                   data.name:
                                   np.ones([1, 1, 2, 2]).astype('float32'),
                                   tensor.name:
                                   np.ones([1, 32, 64]).astype('float32'),
                                   x.name:
                                   x_d
                               },
                               return_numpy=False)
106 107 108 109


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