test_angle_op.py 4.7 KB
Newer Older
F
Feiyu Chan 已提交
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2
#
F
Feiyu Chan 已提交
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
6
#
F
Feiyu Chan 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
F
Feiyu Chan 已提交
9 10 11 12 13 14 15
# 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

F
Feiyu Chan 已提交
17
import numpy as np
C
chenxujun 已提交
18
from eager_op_test import OpTest, convert_float_to_uint16
F
Feiyu Chan 已提交
19 20 21

import paddle
from paddle import static
C
chenxujun 已提交
22
from paddle.fluid import core, dygraph
23

F
Feiyu Chan 已提交
24 25 26 27 28 29 30 31 32
paddle.enable_static()


def angle_grad(x, dout):
    if np.iscomplexobj(x):

        def angle_grad_element(xi, douti):
            if xi == 0:
                return 0
33
            rsquare = np.abs(xi) ** 2
F
Feiyu Chan 已提交
34 35 36 37 38 39 40 41 42 43
            return -douti * xi.imag / rsquare + 1j * douti * xi.real / rsquare

        return np.vectorize(angle_grad_element)(x, dout)
    else:
        return np.zeros_like(x).astype(x.dtype)


class TestAngleOpFloat(OpTest):
    def setUp(self):
        self.op_type = "angle"
W
WangZhen 已提交
44
        self.python_api = paddle.angle
F
Feiyu Chan 已提交
45 46 47 48 49 50 51
        self.dtype = "float64"
        self.x = np.linspace(-5, 5, 101).astype(self.dtype)
        out_ref = np.angle(self.x)
        self.inputs = {'X': self.x}
        self.outputs = {'Out': out_ref}

    def test_check_output(self):
W
wanghuancoder 已提交
52
        self.check_output()
F
Feiyu Chan 已提交
53 54

    def test_check_grad(self):
55 56 57 58 59 60 61
        self.check_grad(
            ['X'],
            'Out',
            user_defined_grads=[
                angle_grad(self.x, np.ones_like(self.x) / self.x.size)
            ],
        )
F
Feiyu Chan 已提交
62 63


C
chenxujun 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
class TestAngleFP16Op(TestAngleOpFloat):
    def setUp(self):
        self.op_type = "angle"
        self.python_api = paddle.angle
        self.dtype = "float16"
        self.x = np.linspace(-5, 5, 101).astype(self.dtype)
        out_ref = np.angle(self.x)
        self.inputs = {'X': self.x}
        self.outputs = {'Out': out_ref}


@unittest.skipIf(
    not core.is_compiled_with_cuda()
    or not core.is_bfloat16_supported(core.CUDAPlace(0)),
    "core is not compiled with CUDA or not support bfloat16",
)
class TestAngleBF16Op(OpTest):
    def setUp(self):
        self.op_type = "angle"
        self.python_api = paddle.angle
        self.dtype = np.uint16
        self.np_dtype = np.float32
        self.x = np.linspace(-5, 5, 101).astype(self.np_dtype)
        out_ref = np.angle(self.x)
        self.inputs = {'X': self.x}
        self.outputs = {'Out': out_ref}

        self.inputs['X'] = convert_float_to_uint16(self.inputs['X'])
        self.outputs['Out'] = convert_float_to_uint16(self.outputs['Out'])
        self.place = core.CUDAPlace(0)

    def test_check_output(self):
        self.check_output_with_place(self.place)

    def test_check_grad(self):
        self.check_grad_with_place(
            self.place,
            ['X'],
            'Out',
            user_defined_grads=[
                angle_grad(self.x, np.ones_like(self.x) / self.x.size)
            ],
        )


F
Feiyu Chan 已提交
109 110 111
class TestAngleOpComplex(OpTest):
    def setUp(self):
        self.op_type = "angle"
W
WangZhen 已提交
112
        self.python_api = paddle.angle
F
Feiyu Chan 已提交
113 114 115 116 117 118 119 120 121
        self.dtype = "complex128"
        real = np.expand_dims(np.linspace(-2, 2, 11), -1).astype("float64")
        imag = np.linspace(-2, 2, 11).astype("float64")
        self.x = real + 1j * imag
        out_ref = np.angle(self.x)
        self.inputs = {'X': self.x}
        self.outputs = {'Out': out_ref}

    def test_check_output(self):
W
wanghuancoder 已提交
122
        self.check_output()
F
Feiyu Chan 已提交
123 124

    def test_check_grad(self):
125 126 127 128 129 130 131
        self.check_grad(
            ['X'],
            'Out',
            user_defined_grads=[
                angle_grad(self.x, np.ones_like(self.x) / self.x.size)
            ],
        )
F
Feiyu Chan 已提交
132 133 134 135 136 137 138 139 140 141 142


class TestAngleAPI(unittest.TestCase):
    def setUp(self):
        self.x = np.random.randn(2, 3) + 1j * np.random.randn(2, 3)
        self.out = np.angle(self.x)

    def test_dygraph(self):
        with dygraph.guard():
            x = paddle.to_tensor(self.x)
            out_np = paddle.angle(x).numpy()
143
        np.testing.assert_allclose(self.out, out_np, rtol=1e-05)
F
Feiyu Chan 已提交
144 145 146 147 148 149 150 151 152 153

    def test_static(self):
        mp, sp = static.Program(), static.Program()
        with static.program_guard(mp, sp):
            x = static.data("x", shape=[2, 3], dtype="complex128")
            out = paddle.angle(x)

        exe = static.Executor()
        exe.run(sp)
        [out_np] = exe.run(mp, feed={"x": self.x}, fetch_list=[out])
154
        np.testing.assert_allclose(self.out, out_np, rtol=1e-05)
F
Feiyu Chan 已提交
155 156 157 158


if __name__ == "__main__":
    unittest.main()