test_angle_op.py 3.3 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 16 17 18 19 20 21 22 23
# 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.

from __future__ import print_function

import unittest
import numpy as np
from op_test import OpTest

import paddle
from paddle.fluid import dygraph
from paddle import static
24

F
Feiyu Chan 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
paddle.enable_static()


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

        def angle_grad_element(xi, douti):
            if xi == 0:
                return 0
            rsquare = np.abs(xi)**2
            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):
43

F
Feiyu Chan 已提交
44 45 46 47 48 49 50 51 52 53 54 55
    def setUp(self):
        self.op_type = "angle"
        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):
        self.check_output()

    def test_check_grad(self):
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 64


class TestAngleOpComplex(OpTest):
65

F
Feiyu Chan 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79
    def setUp(self):
        self.op_type = "angle"
        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):
        self.check_output()

    def test_check_grad(self):
80 81 82 83 84 85
        self.check_grad(['X'],
                        'Out',
                        user_defined_grads=[
                            angle_grad(self.x,
                                       np.ones_like(self.x) / self.x.size)
                        ])
F
Feiyu Chan 已提交
86 87 88


class TestAngleAPI(unittest.TestCase):
89

F
Feiyu Chan 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    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()
        self.assertTrue(np.allclose(self.out, out_np))

    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])
        self.assertTrue(np.allclose(self.out, out_np))


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