test_complex_abs.py 4.6 KB
Newer Older
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2
#
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
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15 16 17 18
# 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
import numpy as np

import paddle
19
import paddle.fluid.dygraph as dg
20
from op_test import OpTest
21
from paddle.fluid.framework import _test_eager_guard
22 23 24


class TestComplexAbsOp(OpTest):
25

26 27
    def setUp(self):
        paddle.enable_static()
28
        self.python_api = paddle.abs
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
        self.op_type = "abs"
        self.dtype = np.float64
        self.shape = (2, 3, 4, 5)
        self.init_input_output()
        self.init_grad_input_output()

        self.inputs = {'X': OpTest.np_dtype_to_fluid_dtype(self.x)}
        self.outputs = {'Out': self.out}

    def init_input_output(self):
        self.x = np.random.random(self.shape).astype(
            self.dtype) + 1J * np.random.random(self.shape).astype(self.dtype)
        self.out = np.abs(self.x)

    def init_grad_input_output(self):
        self.grad_out = np.ones(self.shape, self.dtype)
        self.grad_x = self.grad_out * (self.x / np.abs(self.x))

    def test_check_output(self):
48
        self.check_output(check_eager=False)
49 50

    def test_check_grad(self):
51 52 53 54 55
        self.check_grad(['X'],
                        'Out',
                        user_defined_grads=[self.grad_x],
                        user_defined_grad_outputs=[self.grad_out],
                        check_eager=False)
56 57 58


class TestComplexAbsOpZeroValues(OpTest):
59

60 61 62
    def setUp(self):
        paddle.enable_static()
        self.op_type = "abs"
63
        self.python_api = paddle.abs
64 65 66 67 68 69 70 71 72
        self.dtype = np.float64
        self.shape = (2, 3, 4, 5)
        self.init_input_output()
        self.init_grad_input_output()

        self.inputs = {'X': OpTest.np_dtype_to_fluid_dtype(self.x)}
        self.outputs = {'Out': self.out}

    def init_input_output(self):
73 74
        self.x = np.zeros(self.shape).astype(
            self.dtype) + 1J * np.zeros(self.shape).astype(self.dtype)
75 76 77 78 79 80 81
        self.out = np.abs(self.x)

    def init_grad_input_output(self):
        self.grad_out = np.ones(self.shape, self.dtype)
        self.grad_x = np.zeros(self.shape, self.dtype)

    def test_check_output(self):
82
        self.check_output(check_eager=False)
83 84

    def test_check_grad(self):
85 86 87 88 89
        self.check_grad(['X'],
                        'Out',
                        user_defined_grads=[self.grad_x],
                        user_defined_grad_outputs=[self.grad_out],
                        check_eager=False)
90 91


92
class TestAbs(unittest.TestCase):
93

94 95 96 97 98 99 100 101 102 103 104 105
    def setUp(self):
        self._dtypes = ["float32", "float64"]
        self._places = [paddle.CPUPlace()]
        if paddle.is_compiled_with_cuda():
            self._places.append(paddle.CUDAPlace(0))

    def test_all_positive(self):
        for dtype in self._dtypes:
            x = 1 + 10 * np.random.random([13, 3, 3]).astype(dtype)
            for place in self._places:
                with dg.guard(place):
                    y = paddle.abs(paddle.to_tensor(x))
106
                    np.testing.assert_allclose(np.abs(x), y.numpy(), rtol=1e-05)
107

108 109 110 111
    def test_eager(self):
        with _test_eager_guard():
            self.test_all_positive()

112 113

class TestRealAbsOp(OpTest):
114

115 116
    def setUp(self):
        paddle.enable_static()
117
        self.python_api = paddle.abs
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
        self.op_type = "abs"
        self.dtype = np.float64
        self.shape = (2, 3, 4, 5)
        self.init_input_output()
        self.init_grad_input_output()

        self.inputs = {'X': OpTest.np_dtype_to_fluid_dtype(self.x)}
        self.outputs = {'Out': self.out}

    def init_input_output(self):
        self.x = 1 + np.random.random(self.shape).astype(self.dtype)
        self.out = np.abs(self.x)

    def init_grad_input_output(self):
        self.grad_out = np.ones(self.shape, self.dtype)
        self.grad_x = self.grad_out * (self.x / np.abs(self.x))

    def test_check_output(self):
136
        self.check_output(check_eager=False)
137 138

    def test_check_grad(self):
139 140 141 142 143
        self.check_grad(['X'],
                        'Out',
                        user_defined_grads=[self.grad_x],
                        user_defined_grad_outputs=[self.grad_out],
                        check_eager=False)
144 145


146 147
if __name__ == '__main__':
    unittest.main()