test_imperative_framework.py 2.4 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

J
Jiabin Yang 已提交
17 18
import numpy as np
from test_imperative_base import new_program_scope
19 20 21

import paddle
import paddle.fluid as fluid
J
Jiabin Yang 已提交
22 23 24


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

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


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

69
    def test_dygraph_to_string(self):
J
Jiabin Yang 已提交
70 71
        np_inp = np.array([[1.0, 2.0], [3.0, 4.0]], dtype=np.float32)
        with fluid.dygraph.guard():
72 73
            var_inp = fluid.dygraph.to_variable(np_inp)
            print(str(var_inp))