test_mul_op.py 2.4 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
Q
qijun 已提交
17
from op_test import OpTest
Q
qijun 已提交
18 19


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

Q
qijun 已提交
29 30 31 32 33
    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 已提交
34

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

Q
qijun 已提交
39 40 41 42 43 44
    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):
45
    def setUp(self):
Q
qijun 已提交
46
        self.op_type = "mul"
47 48 49 50
        self.inputs = {
            'X': np.random.random((15, 4, 12, 10)).astype("float32"),
            'Y': np.random.random((4, 30, 8, 2, 9)).astype("float32")
        }
F
fengjiayi 已提交
51
        self.attrs = {'x_num_col_dims': 2, 'y_num_col_dims': 2}
Y
Yu Yang 已提交
52 53 54 55
        result = np.dot(self.inputs['X'].reshape(15 * 4, 12 * 10),
                        self.inputs['Y'].reshape(4 * 30, 8 * 2 * 9))
        result = result.reshape(15, 4, 8, 2, 9)
        self.outputs = {'Out': result}
56

Q
qijun 已提交
57 58
    def test_check_output(self):
        self.check_output()
59

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

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

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


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