test_imperative_framework.py 2.8 KB
Newer Older
J
Jiabin Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2019 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 unittest
16
import paddle
J
Jiabin Yang 已提交
17 18 19
import paddle.fluid as fluid
import numpy as np
from test_imperative_base import new_program_scope
20
from paddle.fluid.framework import _test_eager_guard
J
Jiabin Yang 已提交
21 22 23


class MLP(fluid.Layer):
24
    def __init__(self, input_size):
25
        super().__init__()
26 27
        self._linear1 = fluid.dygraph.Linear(
            input_size,
J
Jiabin Yang 已提交
28
            3,
29 30 31 32 33 34 35
            param_attr=fluid.ParamAttr(
                initializer=fluid.initializer.Constant(value=0.1)
            ),
            bias_attr=fluid.ParamAttr(
                initializer=fluid.initializer.Constant(value=0.1)
            ),
        )
36 37
        self._linear2 = fluid.dygraph.Linear(
            3,
J
Jiabin Yang 已提交
38
            4,
39 40 41 42 43 44 45
            param_attr=fluid.ParamAttr(
                initializer=fluid.initializer.Constant(value=0.1)
            ),
            bias_attr=fluid.ParamAttr(
                initializer=fluid.initializer.Constant(value=0.1)
            ),
        )
J
Jiabin Yang 已提交
46 47

    def forward(self, inputs):
48 49
        x = self._linear1(inputs)
        x = self._linear2(x)
50
        x = paddle.sum(x)
J
Jiabin Yang 已提交
51 52 53 54
        return x


class TestDygraphFramework(unittest.TestCase):
55
    def func_test_dygraph_backward(self):
J
Jiabin Yang 已提交
56
        with new_program_scope():
57
            mlp = MLP(input_size=2)
58 59 60
            var_inp = fluid.layers.data(
                "input", shape=[2, 2], dtype="float32", append_batch_size=False
            )
J
Jiabin Yang 已提交
61 62 63 64
            out = mlp(var_inp)
            try:
                out.backward()
                raise AssertionError(
65 66
                    "backward should not be usable in static graph mode"
                )
67
            except AssertionError as e:
J
Jiabin Yang 已提交
68 69
                self.assertTrue((e is not None))

70 71 72 73 74 75
    def test_dygraph_backward(self):
        with _test_eager_guard():
            self.func_test_dygraph_backward()
        self.func_test_dygraph_backward()

    def func_test_dygraph_to_string(self):
J
Jiabin Yang 已提交
76 77
        np_inp = np.array([[1.0, 2.0], [3.0, 4.0]], dtype=np.float32)
        with fluid.dygraph.guard():
78 79
            var_inp = fluid.dygraph.to_variable(np_inp)
            print(str(var_inp))
80 81 82 83 84

    def test_dygraph_to_string(self):
        with _test_eager_guard():
            self.func_test_dygraph_to_string()
        self.func_test_dygraph_to_string()