test_mv_op.py 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#Copyright (c) 2020 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
import numpy as np
import paddle
18
from paddle.static import program_guard, Program
19 20 21 22
from op_test import OpTest


class TestMVOp(OpTest):
23

24 25
    def setUp(self):
        self.op_type = "mv"
H
hong 已提交
26
        self.python_api = paddle.mv
27 28 29 30 31
        self.init_config()
        self.inputs = {'X': self.x, 'Vec': self.vec}
        self.outputs = {'Out': np.dot(self.x, self.vec)}

    def test_check_output(self):
H
hong 已提交
32
        self.check_output(check_eager=True)
33 34

    def test_check_grad(self):
H
hong 已提交
35
        self.check_grad(['X', 'Vec'], 'Out', check_eager=True)
36 37

    def init_config(self):
38
        self.x = np.random.random((2, 100)).astype("float64")
39 40 41 42
        self.vec = np.random.random((100)).astype("float64")


class TestMVAPI(unittest.TestCase):
43

44 45 46 47 48 49 50 51 52 53
    def test_dygraph_api_out(self):
        paddle.disable_static()

        self.x_data = np.random.random((5, 100)).astype("float64")
        self.x = paddle.to_tensor(self.x_data)
        self.vec_data = np.random.random((100)).astype("float64")
        self.vec = paddle.to_tensor(self.vec_data)
        z = paddle.mv(self.x, self.vec)
        np_z = z.numpy()
        z_expected = np.array(np.dot(self.x_data, self.vec_data))
54
        np.testing.assert_allclose(np_z, z_expected, rtol=1e-05)
55 56 57 58

        paddle.enable_static()

    def test_static_graph(self):
59 60 61 62 63 64 65 66 67 68 69 70
        for x_stop_gradient in [False, True]:
            for vec_stop_gradient in [False, True]:

                paddle.enable_static()

                train_program = Program()
                startup_program = Program()

                self.input_x = np.random.rand(5, 100).astype("float64")
                self.input_vec = np.random.rand(100).astype("float64")

                with program_guard(train_program, startup_program):
71 72 73 74 75 76
                    data_x = paddle.static.data("x",
                                                shape=[5, 100],
                                                dtype="float64")
                    data_vec = paddle.static.data("vec",
                                                  shape=[100],
                                                  dtype="float64")
77 78 79 80 81

                    data_x.stop_gradient = x_stop_gradient
                    data_vec.stop_gradient = vec_stop_gradient

                    result_vec = paddle.mv(data_x, data_vec)
82

83 84
                    self.place = paddle.CPUPlace()
                    exe = paddle.static.Executor(self.place)
85 86 87 88 89
                    res, = exe.run(feed={
                        "x": self.input_x,
                        "vec": self.input_vec
                    },
                                   fetch_list=[result_vec])
90
                    z_expected = np.array(np.dot(self.input_x, self.input_vec))
91
                    np.testing.assert_allclose(res, z_expected, rtol=1e-05)
92 93 94


class TestMVError(unittest.TestCase):
95

96
    def test_input(self):
97

98 99 100 101 102 103 104
        def test_shape():
            paddle.enable_static()

            self.input_x = np.random.rand(5, 100).astype("float64")
            self.input_vec = np.random.rand(100).astype("float64")

            data_x = paddle.static.data("x", shape=[5, 100], dtype="float64")
105 106 107
            data_vec = paddle.static.data("vec",
                                          shape=[100, 2],
                                          dtype="float64")
108 109 110 111 112 113
            result_vec = paddle.mv(data_x, data_vec)

        self.assertRaises(ValueError, test_shape)


if __name__ == '__main__':
H
hong 已提交
114
    paddle.enable_static()
115
    unittest.main()