test_operator_desc.py 5.0 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.

F
fengjiayi 已提交
15
import unittest
Y
Yu Yang 已提交
16

17
import paddle.fluid.core as core
F
fengjiayi 已提交
18

19
from paddle.fluid.framework import Program, default_startup_program
Y
Yu Yang 已提交
20 21 22

main_program = default_startup_program()

F
fengjiayi 已提交
23 24

class TestOperator(unittest.TestCase):
25

F
fengjiayi 已提交
26
    def test_error_type(self):
W
Wu Yi 已提交
27
        block = main_program._create_block()
F
fengjiayi 已提交
28 29 30 31 32
        try:
            block.append_op()
            self.assertFail()
        except ValueError as v_err:
            self.assertEqual(
33
                str(v_err),
34
                "`type` to initialized an Operator can not be None.")
F
fengjiayi 已提交
35 36 37
        try:
            block.append_op(type="no_such_op")
            self.assertFail()
Y
Yu Yang 已提交
38
        except ValueError as a_err:
M
minqiyang 已提交
39
            self.assertEqual(
40
                str(a_err), "Operator \"no_such_op\" has not been registered.")
F
fengjiayi 已提交
41

F
fengjiayi 已提交
42
    def test_op_desc_creation(self):
43 44
        program = Program()
        block = program.current_block()
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        mul_x = block.create_var(dtype="float32",
                                 shape=[5, 10],
                                 lod_level=0,
                                 name="mul.x")
        mul_y = block.create_var(dtype="float32",
                                 shape=[10, 8],
                                 lod_level=0,
                                 name="mul.y")
        mul_out = block.create_var(dtype="float32",
                                   shape=[5, 8],
                                   lod_level=0,
                                   name="mul.out")
        mul_op = block.append_op(type="mul",
                                 inputs={
                                     "X": [mul_x],
                                     "Y": mul_y
                                 },
                                 outputs={"Out": [mul_out]},
                                 attrs={"x_num_col_dims": 1})
64 65

        self.assertNotEqual(str(mul_op), "")
F
fengjiayi 已提交
66 67
        self.assertEqual(mul_op.type, "mul")
        self.assertEqual(mul_op.input_names, ["X", "Y"])
F
fengjiayi 已提交
68 69
        self.assertEqual(mul_op.input("X"), ["mul.x"])
        self.assertEqual(mul_op.input("Y"), ["mul.y"])
F
fengjiayi 已提交
70
        self.assertEqual(mul_op.output_names, ["Out"])
F
fengjiayi 已提交
71
        self.assertEqual(mul_op.output("Out"), ["mul.out"])
72
        self.assertEqual(
73
            set(mul_op.attr_names),
X
Xin Pan 已提交
74 75
            set([
                "x_num_col_dims", "y_num_col_dims", "op_role", "op_role_var",
76
                "op_namescope", "op_callstack", "op_device", "with_quant_attr"
X
Xin Pan 已提交
77
            ]))
F
fengjiayi 已提交
78 79 80
        self.assertEqual(mul_op.has_attr("x_num_col_dims"), True)
        self.assertEqual(mul_op.attr_type("x_num_col_dims"), core.AttrType.INT)
        self.assertEqual(mul_op.attr("x_num_col_dims"), 1)
81 82 83
        self.assertEqual(mul_op.has_attr("y_num_col_dims"), True)
        self.assertEqual(mul_op.attr_type("y_num_col_dims"), core.AttrType.INT)
        self.assertEqual(mul_op.attr("y_num_col_dims"), 1)
84
        self.assertEqual(mul_op.idx, 0)
F
fengjiayi 已提交
85
        self.assertEqual(mul_out.op, mul_op)
86 87
        mul_op.desc.remove_input("X")
        self.assertEqual(mul_op.input_names, ["Y"])
F
fengjiayi 已提交
88 89

    def test_mult_input(self):
90 91
        program = Program()
        block = program.current_block()
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
        sum_x1 = block.create_var(dtype="int",
                                  shape=[3, 4],
                                  lod_level=0,
                                  name="sum.x1")
        sum_x2 = block.create_var(dtype="int",
                                  shape=[3, 4],
                                  lod_level=0,
                                  name="sum.x2")
        sum_x3 = block.create_var(dtype="int",
                                  shape=[3, 4],
                                  lod_level=0,
                                  name="sum.x3")
        sum_out = block.create_var(dtype="int",
                                   shape=[3, 4],
                                   lod_level=0,
                                   name="sum.out")
        sum_op = block.append_op(type="sum",
                                 inputs={"X": [sum_x1, sum_x2, sum_x3]},
                                 outputs={"Out": sum_out})
F
fengjiayi 已提交
111 112
        self.assertEqual(sum_op.type, "sum")
        self.assertEqual(sum_op.input_names, ["X"])
F
fengjiayi 已提交
113
        self.assertEqual(sum_op.input("X"), ["sum.x1", "sum.x2", "sum.x3"])
F
fengjiayi 已提交
114
        self.assertEqual(sum_op.output_names, ["Out"])
F
fengjiayi 已提交
115
        self.assertEqual(sum_op.output("Out"), ["sum.out"])
116
        self.assertEqual(sum_op.idx, 0)
F
fengjiayi 已提交
117
        self.assertEqual(sum_out.op, sum_op)
F
fengjiayi 已提交
118 119 120 121


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