test_mul_op.py 3.7 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

Q
qijun 已提交
15 16
import unittest
import numpy as np
17
import paddle.fluid.core as core
18
from .op_test import OpTest
Q
qijun 已提交
19 20


Q
qijun 已提交
21
class TestMulOp(OpTest):
Q
qijun 已提交
22
    def setUp(self):
Q
qijun 已提交
23
        self.op_type = "mul"
D
dangqingqing 已提交
24
        self.inputs = {
25 26
            'X': np.random.random((2, 5)).astype("float32"),
            'Y': np.random.random((5, 3)).astype("float32")
D
dangqingqing 已提交
27 28
        }
        self.outputs = {'Out': np.dot(self.inputs['X'], self.inputs['Y'])}
Q
qijun 已提交
29

Q
qijun 已提交
30 31 32 33 34
    def test_check_output(self):
        self.check_output()

    def test_check_grad_normal(self):
        self.check_grad(['X', 'Y'], 'Out', max_relative_error=0.5)
Q
qijun 已提交
35

Q
qijun 已提交
36 37 38
    def test_check_grad_ingore_x(self):
        self.check_grad(
            ['Y'], 'Out', max_relative_error=0.5, no_grad_set=set("X"))
39

Q
qijun 已提交
40 41 42 43 44 45
    def test_check_grad_ingore_y(self):
        self.check_grad(
            ['X'], 'Out', max_relative_error=0.5, no_grad_set=set('Y'))


class TestMulOp2(OpTest):
46
    def setUp(self):
Q
qijun 已提交
47
        self.op_type = "mul"
48
        self.inputs = {
49 50
            'X': np.random.random((3, 4, 4, 3)).astype("float32"),
            'Y': np.random.random((2, 6, 1, 2, 3)).astype("float32")
51
        }
52 53 54 55 56 57 58
        self.attrs = {
            'x_num_col_dims': 2,
            'y_num_col_dims': 2,
        }
        result = np.dot(self.inputs['X'].reshape(3 * 4, 4 * 3),
                        self.inputs['Y'].reshape(2 * 6, 1 * 2 * 3))
        result = result.reshape(3, 4, 1, 2, 3)
Y
Yu Yang 已提交
59
        self.outputs = {'Out': result}
60

Q
qijun 已提交
61 62
    def test_check_output(self):
        self.check_output()
63

Q
qijun 已提交
64 65
    def test_check_grad_normal(self):
        self.check_grad(['X', 'Y'], 'Out', max_relative_error=0.5)
66

Q
qijun 已提交
67
    def test_check_grad_ingore_x(self):
68
        self.check_grad(
Q
qijun 已提交
69
            ['Y'], 'Out', max_relative_error=0.5, no_grad_set=set('X'))
70

Q
qijun 已提交
71
    def test_check_grad_ignore_y(self):
72
        self.check_grad(
Q
qijun 已提交
73
            ['X'], 'Out', max_relative_error=0.5, no_grad_set=set('Y'))
74 75


76 77 78
class TestFP16MulOp1(OpTest):
    def setUp(self):
        self.op_type = "mul"
79 80 81
        x = np.random.random((3, 5)).astype("float16")
        y = np.random.random((5, 4)).astype("float16")
        self.inputs = {'X': x.view(np.float16), 'Y': y.view(np.float16)}
82 83 84 85 86 87 88 89 90 91 92 93
        self.outputs = {'Out': np.dot(x, y)}

    def test_check_output(self):
        if core.is_compiled_with_cuda():
            place = core.CUDAPlace(0)
            if core.is_float16_supported(place):
                self.check_output_with_place(place, atol=1e-1)


class TestFP16MulOp2(OpTest):
    def setUp(self):
        self.op_type = "mul"
94 95 96 97 98 99 100 101 102
        x = np.random.random((3, 4, 4, 3)).astype("float16")
        y = np.random.random((2, 6, 1, 2, 3)).astype("float16")
        self.inputs = {'X': x.view(np.float16), 'Y': y.view(np.float16)}
        self.attrs = {
            'x_num_col_dims': 2,
            'y_num_col_dims': 2,
        }
        result = np.dot(x.reshape(3 * 4, 4 * 3), y.reshape(2 * 6, 1 * 2 * 3))
        result = result.reshape(3, 4, 1, 2, 3)
103 104 105 106 107 108 109 110 111
        self.outputs = {'Out': result}

    def test_check_output(self):
        if core.is_compiled_with_cuda():
            place = core.CUDAPlace(0)
            if core.is_float16_supported(place):
                self.check_output_with_place(place, atol=2e-1)


Q
qijun 已提交
112
if __name__ == "__main__":
Q
qijun 已提交
113
    unittest.main()