test_sum_op.py 5.6 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.

15 16
from __future__ import print_function

17 18 19
import unittest
import numpy as np
from op_test import OpTest
T
tangwei12 已提交
20 21
import paddle.fluid.core as core
from paddle.fluid.op import Operator
22 23 24 25 26


class TestSumOp(OpTest):
    def setUp(self):
        self.op_type = "sum"
C
chengduo 已提交
27
        self.init_kernel_type()
28 29
        self.use_mkldnn = False
        self.init_kernel_type()
C
chengduo 已提交
30 31 32
        x0 = np.random.random((3, 4)).astype(self.dtype)
        x1 = np.random.random((3, 4)).astype(self.dtype)
        x2 = np.random.random((3, 4)).astype(self.dtype)
33
        self.inputs = {"X": [("x0", x0), ("x1", x1), ("x2", x2)]}
34 35
        y = x0 + x1 + x2
        self.outputs = {'Out': y}
36
        self.attrs = {'use_mkldnn': self.use_mkldnn}
37

C
chengduo 已提交
38 39 40
    def init_kernel_type(self):
        self.dtype = np.float32

41
    def test_check_output(self):
Q
qijun 已提交
42
        self.check_output()
43 44

    def test_check_grad(self):
Q
qijun 已提交
45
        self.check_grad(['x0'], 'Out')
46

47 48 49
    def init_kernel_type(self):
        pass

50

T
tangwei12 已提交
51
class TestSelectedRowsSumOp(OpTest):
Q
Qiao Longfei 已提交
52
    def check_with_place(self, place, inplace):
Q
qiaolongfei 已提交
53 54 55 56
        self.height = 10
        self.row_numel = 12
        self.rows = [0, 1, 2, 3, 4, 5, 6]

Q
Qiao Longfei 已提交
57 58 59 60 61 62 63 64
        self.check_input_and_optput(core.Scope(), place, inplace, True, True,
                                    True)
        self.check_input_and_optput(core.Scope(), place, inplace, False, True,
                                    True)
        self.check_input_and_optput(core.Scope(), place, inplace, False, False,
                                    True)
        self.check_input_and_optput(core.Scope(), place, inplace, False, False,
                                    False)
T
tangwei12 已提交
65

C
chengduo 已提交
66 67 68
    def init_kernel_type(self):
        self.dtype = np.float32

Q
qiaolongfei 已提交
69
    def _get_array(self, row_num, row_numel):
C
chengduo 已提交
70
        array = np.ones((row_num, row_numel)).astype(self.dtype)
Q
qiaolongfei 已提交
71 72 73 74
        for i in range(row_num):
            array[i] *= i
        return array

T
tangwei12 已提交
75 76 77
    def check_input_and_optput(self,
                               scope,
                               place,
Q
Qiao Longfei 已提交
78
                               inplace,
T
tangwei12 已提交
79 80 81 82 83 84 85
                               w1_has_data=False,
                               w2_has_data=False,
                               w3_has_data=False):

        self.create_selected_rows(scope, place, "W1", w1_has_data)
        self.create_selected_rows(scope, place, "W2", w2_has_data)
        self.create_selected_rows(scope, place, "W3", w3_has_data)
T
tangwei12 已提交
86 87

        # create Out Variable
Q
Qiao Longfei 已提交
88 89 90 91 92
        if inplace:
            out_var_name = "W1"
        else:
            out_var_name = "Out"
        out = scope.var(out_var_name).get_selected_rows()
T
tangwei12 已提交
93 94

        # create and run sum operator
Q
Qiao Longfei 已提交
95
        sum_op = Operator("sum", X=["W1", "W2", "W3"], Out=out_var_name)
T
tangwei12 已提交
96 97
        sum_op.run(scope, place)

T
tangwei12 已提交
98
        has_data_w_num = 0
Q
qiaolongfei 已提交
99 100
        for has_data in [w1_has_data, w2_has_data, w3_has_data]:
            if has_data:
T
tangwei12 已提交
101
                has_data_w_num += 1
T
tangwei12 已提交
102

Q
qiaolongfei 已提交
103 104 105 106 107 108 109 110 111
        if has_data_w_num > 0:
            self.assertEqual(len(out.rows()), 7)
            self.assertTrue(
                np.array_equal(
                    np.array(out.get_tensor()),
                    self._get_array(len(self.rows), self.row_numel) *
                    has_data_w_num))
        else:
            self.assertEqual(len(out.rows()), 0)
T
tangwei12 已提交
112

Q
qiaolongfei 已提交
113
    def create_selected_rows(self, scope, place, var_name, has_data):
T
tangwei12 已提交
114
        # create and initialize W Variable
Q
qiaolongfei 已提交
115 116
        if has_data:
            rows = self.rows
T
tangwei12 已提交
117 118 119 120 121
        else:
            rows = []

        var = scope.var(var_name)
        w_selected_rows = var.get_selected_rows()
Q
qiaolongfei 已提交
122
        w_selected_rows.set_height(self.height)
T
tangwei12 已提交
123
        w_selected_rows.set_rows(rows)
Q
qiaolongfei 已提交
124
        w_array = self._get_array(len(rows), self.row_numel)
T
tangwei12 已提交
125 126 127 128 129 130 131
        w_tensor = w_selected_rows.get_tensor()
        w_tensor.set(w_array, place)

        return var

    def test_w_is_selected_rows(self):
        places = [core.CPUPlace()]
Q
Qiao Longfei 已提交
132 133
        if core.is_compiled_with_cuda():
            places.append(core.CUDAPlace(0))
T
tangwei12 已提交
134
        for place in places:
Q
Qiao Longfei 已提交
135 136
            for inplace in [True, False]:
                self.check_with_place(place, inplace)
T
tangwei12 已提交
137 138


C
chengduo 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
class TestFP16SumOp(TestSumOp):
    def init_kernel_type(self):
        self.dtype = np.float16

    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-2)

    # FIXME: Because of the precision fp16, max_relative_error
    # should be 0.15 here.
    def test_check_grad(self):
        if core.is_compiled_with_cuda():
            place = core.CUDAPlace(0)
            if core.is_float16_supported(place):
                self.check_grad(['x0'], 'Out', max_relative_error=0.15)


class TestFP16SelectedRowsSumOp(TestSelectedRowsSumOp):
    def init_kernel_type(self):
        self.dtype = np.float16

    def test_w_is_selected_rows(self):
        if core.is_compiled_with_cuda():
            place = core.CUDAPlace(0)
            if core.is_float16_supported(place):
                for inplace in [True, False]:
                    self.check_with_place(place, inplace)


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