test_operator_desc.py 4.0 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#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.
F
fengjiayi 已提交
14
import unittest
Y
Yu Yang 已提交
15

Q
Qiao Longfei 已提交
16
import paddle.v2.fluid.core as core
F
fengjiayi 已提交
17

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

main_program = default_startup_program()

F
fengjiayi 已提交
22 23 24

class TestOperator(unittest.TestCase):
    def test_error_type(self):
Y
Yu Yang 已提交
25
        block = main_program.create_block()
F
fengjiayi 已提交
26 27 28 29 30 31 32
        try:
            block.append_op()
            self.assertFail()
        except ValueError as v_err:
            self.assertEqual(
                v_err.message,
                "`type` to initilized an Operator can not be None.")
F
fengjiayi 已提交
33 34 35
        try:
            block.append_op(type="no_such_op")
            self.assertFail()
Y
Yu Yang 已提交
36
        except ValueError as a_err:
F
fengjiayi 已提交
37
            self.assertEqual(a_err.message,
F
fengjiayi 已提交
38
                             "Operator \"no_such_op\" has not been registered.")
F
fengjiayi 已提交
39

F
fengjiayi 已提交
40
    def test_op_desc_creation(self):
41 42
        program = Program()
        block = program.current_block()
F
fengjiayi 已提交
43 44 45 46 47 48 49 50 51 52
        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},
F
fengjiayi 已提交
53 54
            outputs={"Out": [mul_out]},
            attrs={"x_num_col_dims": 1})
55 56

        self.assertNotEqual(str(mul_op), "")
F
fengjiayi 已提交
57 58
        self.assertEqual(mul_op.type, "mul")
        self.assertEqual(mul_op.input_names, ["X", "Y"])
F
fengjiayi 已提交
59 60
        self.assertEqual(mul_op.input("X"), ["mul.x"])
        self.assertEqual(mul_op.input("Y"), ["mul.y"])
F
fengjiayi 已提交
61
        self.assertEqual(mul_op.output_names, ["Out"])
F
fengjiayi 已提交
62
        self.assertEqual(mul_op.output("Out"), ["mul.out"])
63 64
        self.assertEqual(
            set(mul_op.attr_names), set(["x_num_col_dims", "y_num_col_dims"]))
F
fengjiayi 已提交
65 66 67
        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)
68 69 70
        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)
71
        self.assertEqual(mul_op.idx, 0)
F
fengjiayi 已提交
72
        self.assertEqual(mul_out.op, mul_op)
F
fengjiayi 已提交
73 74

    def test_mult_input(self):
75 76
        program = Program()
        block = program.current_block()
F
fengjiayi 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90
        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})
        self.assertEqual(sum_op.type, "sum")
        self.assertEqual(sum_op.input_names, ["X"])
F
fengjiayi 已提交
91
        self.assertEqual(sum_op.input("X"), ["sum.x1", "sum.x2", "sum.x3"])
F
fengjiayi 已提交
92
        self.assertEqual(sum_op.output_names, ["Out"])
F
fengjiayi 已提交
93
        self.assertEqual(sum_op.output("Out"), ["sum.out"])
94
        self.assertEqual(sum_op.idx, 0)
F
fengjiayi 已提交
95
        self.assertEqual(sum_out.op, sum_op)
F
fengjiayi 已提交
96 97 98 99


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