test_dot_op.py 9.1 KB
Newer Older
L
liuwei1031 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#  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
16

L
liuwei1031 已提交
17
import numpy as np
18
from op_test import OpTest
19 20 21 22

import paddle
import paddle.fluid as fluid
import paddle.fluid.core as core
23
from paddle.fluid import Program, program_guard
L
liuwei1031 已提交
24 25 26 27 28


class DotOp(OpTest):
    def setUp(self):
        self.op_type = "dot"
29
        self.python_api = paddle.dot
L
liuwei1031 已提交
30 31 32 33 34
        self.init_dtype()
        self.init_input_output()

        self.inputs = {
            'X': OpTest.np_dtype_to_fluid_dtype(self.x),
35
            'Y': OpTest.np_dtype_to_fluid_dtype(self.y),
L
liuwei1031 已提交
36 37 38 39 40
        }
        self.outputs = {'Out': self.out}
        self.attrs = {}

    def test_check_output(self):
41
        self.check_output(check_eager=True)
L
liuwei1031 已提交
42 43

    def test_check_grad_normal(self):
R
ronnywang 已提交
44 45 46 47
        if core.is_compiled_with_rocm():
            self.check_grad(
                ['X', 'Y'],
                'Out',
48
                user_defined_grads=[self.inputs['Y'], self.inputs['X']],
49 50
                check_eager=True,
            )
R
ronnywang 已提交
51
        else:
52
            self.check_grad(['X', 'Y'], 'Out', check_eager=True)
L
liuwei1031 已提交
53 54

    def test_check_grad_ingore_x(self):
R
ronnywang 已提交
55
        if core.is_compiled_with_rocm():
56 57 58 59 60 61 62
            self.check_grad(
                ['Y'],
                'Out',
                no_grad_set=set("X"),
                user_defined_grads=[self.inputs['X']],
                check_eager=True,
            )
R
ronnywang 已提交
63
        else:
64 65 66
            self.check_grad(
                ['Y'], 'Out', no_grad_set=set("X"), check_eager=True
            )
L
liuwei1031 已提交
67 68

    def test_check_grad_ingore_y(self):
R
ronnywang 已提交
69
        if core.is_compiled_with_rocm():
70 71 72 73 74 75 76
            self.check_grad(
                ['X'],
                'Out',
                no_grad_set=set('Y'),
                user_defined_grads=[self.inputs['Y']],
                check_eager=True,
            )
R
ronnywang 已提交
77
        else:
78 79 80
            self.check_grad(
                ['X'], 'Out', no_grad_set=set('Y'), check_eager=True
            )
L
liuwei1031 已提交
81 82 83 84 85 86 87 88 89 90 91 92

    def init_input_output(self):
        self.x = np.random.uniform(0.1, 1, [121]).astype(self.dtype)
        self.y = np.random.uniform(1, 3, [121]).astype(self.dtype)
        self.out = np.dot(self.x, self.y)

    def init_dtype(self):
        self.dtype = np.float64


class DotOpBatch(DotOp):
    def init_input_output(self):
93 94 95 96 97 98 99 100
        self.x = (
            np.random.uniform(0.1, 1, [132])
            .astype(self.dtype)
            .reshape([11, 12])
        )
        self.y = (
            np.random.uniform(1, 3, [132]).astype(self.dtype).reshape([11, 12])
        )
L
liuwei1031 已提交
101 102
        self.out = np.sum(self.x * self.y, axis=1).reshape([11, 1])

R
ronnywang 已提交
103 104 105 106 107 108 109 110 111
    def test_check_grad_normal(self):
        self.check_grad(['X', 'Y'], 'Out')

    def test_check_grad_ingore_x(self):
        self.check_grad(['Y'], 'Out', no_grad_set=set("X"))

    def test_check_grad_ingore_y(self):
        self.check_grad(['X'], 'Out', no_grad_set=set('Y'))

L
liuwei1031 已提交
112 113 114 115 116 117 118

class TestDotOpError(unittest.TestCase):
    def test_errors(self):
        with program_guard(Program(), Program()):

            # the input dtype of elementwise_mul must be float16 or float32 or float64 or int32 or int64
            # float16 only can be set on GPU place
G
GGBond8488 已提交
119 120
            x1 = paddle.static.data(name='x1', shape=[-1, 120], dtype="uint8")
            y1 = paddle.static.data(name='y1', shape=[-1, 120], dtype="uint8")
L
liuwei1031 已提交
121 122
            self.assertRaises(Exception, paddle.dot, x1, y1)

G
GGBond8488 已提交
123 124 125 126 127 128
            x2 = paddle.static.data(
                name='x2', shape=[-1, 2, 3], dtype="float32"
            )
            y2 = paddle.static.data(
                name='y2', shape=[-1, 2, 3], dtype="float32"
            )
L
liuwei1031 已提交
129 130
            self.assertRaises(Exception, paddle.dot, x2, y2)

G
GGBond8488 已提交
131 132 133 134
            x3 = paddle.static.data(name='x3', shape=[-1, 3], dtype="float32")
            y3 = paddle.static.data(
                name='y3', shape=[-1, 2, 3], dtype="float32"
            )
L
liuwei1031 已提交
135 136 137 138 139 140 141 142
            self.assertRaises(Exception, paddle.dot, x2, y3)


class TestDygraph(unittest.TestCase):
    def test_dygraph(self):
        with fluid.dygraph.guard():
            x1 = fluid.dygraph.to_variable(np.array([1, 3]).astype(np.float32))
            y1 = fluid.dygraph.to_variable(np.array([2, 5]).astype(np.float32))
143 144 145
            np.testing.assert_allclose(
                paddle.dot(x1, y1).numpy(), np.array([17]), rtol=1e-05
            )
L
liuwei1031 已提交
146 147

            x1 = fluid.dygraph.to_variable(
148 149
                np.array([[1, 3], [3, 5]]).astype(np.float32)
            )
L
liuwei1031 已提交
150
            y1 = fluid.dygraph.to_variable(
151 152
                np.array([[2, 5], [6, 8]]).astype(np.float32)
            )
153
            np.testing.assert_array_equal(
154 155
                paddle.dot(x1, y1).numpy(), np.array([[17], [58]])
            )
L
liuwei1031 已提交
156 157


C
chentianyu03 已提交
158 159 160
class TestComplexDotOp(OpTest):
    def setUp(self):
        self.op_type = "dot"
161
        self.python_api = paddle.dot
C
chentianyu03 已提交
162 163 164 165 166 167
        self.init_base_dtype()
        self.init_input_output()
        self.init_grad_input_output()

        self.inputs = {
            'X': OpTest.np_dtype_to_fluid_dtype(self.x),
168
            'Y': OpTest.np_dtype_to_fluid_dtype(self.y),
C
chentianyu03 已提交
169 170 171 172 173 174 175 176
        }
        self.outputs = {'Out': self.out}

    def init_base_dtype(self):
        self.dtype = np.float64

    def init_input_output(self):
        self.x = np.random.random(100).astype(
177 178
            self.dtype
        ) + 1j * np.random.random(100).astype(self.dtype)
C
chentianyu03 已提交
179
        self.y = np.random.random(100).astype(
180 181
            self.dtype
        ) + 1j * np.random.random(100).astype(self.dtype)
C
chentianyu03 已提交
182 183 184
        self.out = np.dot(self.x, self.y)

    def init_grad_input_output(self):
185
        self.grad_out = np.ones(1, self.dtype) + 1j * np.ones(1, self.dtype)
C
chentianyu03 已提交
186 187 188 189
        self.grad_x = self.grad_out * np.conj(self.y)
        self.grad_y = self.grad_out * np.conj(self.x)

    def test_check_output(self):
190
        self.check_output(check_eager=True)
C
chentianyu03 已提交
191 192

    def test_check_grad_normal(self):
193 194 195 196 197 198 199
        self.check_grad(
            ['X', 'Y'],
            'Out',
            user_defined_grads=[self.grad_x, self.grad_y],
            user_defined_grad_outputs=[self.grad_out],
            check_eager=True,
        )
C
chentianyu03 已提交
200 201

    def test_check_grad_ingore_x(self):
202 203 204 205 206 207 208 209
        self.check_grad(
            ['Y'],
            'Out',
            no_grad_set=set("X"),
            user_defined_grads=[self.grad_y],
            user_defined_grad_outputs=[self.grad_out],
            check_eager=True,
        )
C
chentianyu03 已提交
210 211

    def test_check_grad_ingore_y(self):
212 213 214 215 216 217 218 219
        self.check_grad(
            ['X'],
            'Out',
            no_grad_set=set('Y'),
            user_defined_grads=[self.grad_x],
            user_defined_grad_outputs=[self.grad_out],
            check_eager=True,
        )
C
chentianyu03 已提交
220 221 222 223 224 225 226 227 228 229 230


class TestComplexDotOp2D(OpTest):
    def setUp(self):
        self.op_type = "dot"
        self.init_base_dtype()
        self.init_input_output()
        self.init_grad_input_output()

        self.inputs = {
            'X': OpTest.np_dtype_to_fluid_dtype(self.x),
231
            'Y': OpTest.np_dtype_to_fluid_dtype(self.y),
C
chentianyu03 已提交
232 233 234 235 236 237 238
        }
        self.outputs = {'Out': self.out}

    def init_base_dtype(self):
        self.dtype = np.float64

    def init_input_output(self):
239 240 241 242 243 244
        self.x = np.random.random((2, 100)).astype(
            self.dtype
        ) + 1j * np.random.random((2, 100)).astype(self.dtype)
        self.y = np.random.random((2, 100)).astype(
            self.dtype
        ) + 1j * np.random.random((2, 100)).astype(self.dtype)
C
chentianyu03 已提交
245 246 247
        self.out = np.diag(np.dot(self.x, self.y.T)).reshape(-1, 1)

    def init_grad_input_output(self):
248 249 250
        self.grad_out = np.ones((2, 1), self.dtype) + 1j * np.ones(
            (2, 1), self.dtype
        )
C
chentianyu03 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263
        self.grad_x = self._get_grad(self.grad_out, self.y)
        self.grad_y = self._get_grad(self.grad_out, self.x)

    def _get_grad(self, grad_out, input):
        grad = np.empty((0, input.shape[1]))
        for i in range(grad_out.shape[0]):
            grad = np.append(grad, [grad_out[i] * np.conj(input[i])], axis=0)
        return grad

    def test_check_output(self):
        self.check_output()

    def test_check_grad_normal(self):
264 265 266 267 268 269
        self.check_grad(
            ['X', 'Y'],
            'Out',
            user_defined_grads=[self.grad_x, self.grad_y],
            user_defined_grad_outputs=[self.grad_out],
        )
C
chentianyu03 已提交
270 271

    def test_check_grad_ingore_x(self):
272 273 274 275 276 277 278
        self.check_grad(
            ['Y'],
            'Out',
            no_grad_set=set("X"),
            user_defined_grads=[self.grad_y],
            user_defined_grad_outputs=[self.grad_out],
        )
C
chentianyu03 已提交
279 280

    def test_check_grad_ingore_y(self):
281 282 283 284 285 286 287
        self.check_grad(
            ['X'],
            'Out',
            no_grad_set=set('Y'),
            user_defined_grads=[self.grad_x],
            user_defined_grad_outputs=[self.grad_out],
        )
C
chentianyu03 已提交
288 289


L
liuwei1031 已提交
290
if __name__ == '__main__':
C
chentianyu03 已提交
291
    paddle.enable_static()
L
liuwei1031 已提交
292
    unittest.main()