test_net.py 1.2 KB
Newer Older
Q
Qiao Longfei 已提交
1 2
import paddle.v2.fluid.core as core
from paddle.v2.fluid.op import Operator
Y
Yu Yang 已提交
3 4 5
import unittest


6 7 8
def fc(X, W, Y):
    ret_v = core.Net.create()

Y
Yu Yang 已提交
9
    ret_v.append_op(Operator("mul", X="X", Y="W", Out="pre_activation"))
F
fengjiayi 已提交
10
    ret_v.append_op(Operator("sigmoid", X="pre_activation", Out=Y))
11 12 13 14
    ret_v.complete_add_op(True)
    return ret_v


Y
Yu Yang 已提交
15 16 17
class TestNet(unittest.TestCase):
    def test_net_all(self):
        net = core.Net.create()
Y
Fix CI  
Yu Yang 已提交
18
        op1 = Operator("sum", X=["X", "Y"], Out="Out")
Y
Yu Yang 已提交
19
        net.append_op(op1)
Y
Yu Yang 已提交
20 21

        net2 = core.Net.create()
Y
Yu Yang 已提交
22
        net2.append_op(fc(X="X", W="w", Y="fc.out"))
Y
Yu Yang 已提交
23
        net2.complete_add_op(True)
Y
Yu Yang 已提交
24
        net.append_op(net2)
Y
Yu Yang 已提交
25
        net.complete_add_op(True)
Y
Yu Yang 已提交
26 27

        expected = '''
Y
Yu Yang 已提交
28
Op(plain_net), inputs:{all[W, X, Y]}, outputs:{all[Out, fc.out, pre_activation]}.
Y
Fix CI  
Yu Yang 已提交
29
    Op(sum), inputs:{X[X, Y]}, outputs:{Out[Out]}.
Y
Yu Yang 已提交
30 31 32
    Op(plain_net), inputs:{all[W, X]}, outputs:{all[fc.out, pre_activation]}.
        Op(plain_net), inputs:{all[W, X]}, outputs:{all[fc.out, pre_activation]}.
            Op(mul), inputs:{X[X], Y[W]}, outputs:{Out[pre_activation]}.
F
fengjiayi 已提交
33
            Op(sigmoid), inputs:{X[pre_activation]}, outputs:{Out[fc.out]}.
Y
Yu Yang 已提交
34
'''
Y
Yu Yang 已提交
35
        self.assertEqual(expected, "\n" + str(net))
Y
Yu Yang 已提交
36 37


Q
qijun 已提交
38
if __name__ == "__main__":
Y
Yu Yang 已提交
39
    unittest.main()