Files
paddlepaddle--paddle/test/legacy_test/test_real_imag_op.py
T
2026-07-13 12:40:42 +08:00

318 lines
10 KiB
Python

# 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
import numpy as np
from op_test import OpTest, get_places
import paddle
from paddle import base, static
numpy_apis = {
"real": np.real,
"imag": np.imag,
}
paddle_apis = {
"real": paddle.real,
"imag": paddle.imag,
}
class TestRealOp(OpTest):
def setUp(self):
# switch to static
paddle.enable_static()
# op test attrs
self.op_type = "real"
self.python_api = paddle.real
self.dtype = np.float64
self.init_input_output()
# backward attrs
self.init_grad_input_output()
def init_input_output(self):
self.inputs = {
'X': np.random.random((20, 5)).astype(self.dtype)
+ 1j * np.random.random((20, 5)).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((20, 5), self.dtype)
self.grad_x = np.real(self.grad_out) + 1j * np.zeros(
self.grad_out.shape
)
def test_check_output(self):
self.check_output(check_pir=True, check_symbol_infer=False)
def test_check_grad(self):
self.check_grad(
['X'],
'Out',
user_defined_grads=[self.grad_x],
user_defined_grad_outputs=[self.grad_out],
check_pir=True,
)
class TestRealOpZeroSize1(TestRealOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random(0).astype(self.dtype)
+ 1j * np.random.random(0).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((0), self.dtype)
self.grad_x = np.real(self.grad_out) + 1j * np.zeros(
self.grad_out.shape
)
class TestRealOpZeroSize2(TestRealOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random((0, 5)).astype(self.dtype)
+ 1j * np.random.random((0, 5)).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((0, 5), self.dtype)
self.grad_x = np.real(self.grad_out) + 1j * np.zeros(
self.grad_out.shape
)
class TestRealOpZeroSize3(TestRealOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random((2, 0, 5)).astype(self.dtype)
+ 1j * np.random.random((2, 0, 5)).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((2, 0, 5), self.dtype)
self.grad_x = np.real(self.grad_out) + 1j * np.zeros(
self.grad_out.shape
)
class TestImagOp(TestRealOp):
def setUp(self):
# switch to static
paddle.enable_static()
# op test attrs
self.op_type = "imag"
self.python_api = paddle.imag
self.dtype = np.float64
self.init_input_output()
# backward attrs
self.init_grad_input_output()
def init_grad_input_output(self):
self.grad_out = np.ones((20, 5), self.dtype)
self.grad_x = np.zeros(self.grad_out.shape) + 1j * np.real(
self.grad_out
)
class TestImagOpZeroSize1(TestImagOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random(0).astype(self.dtype)
+ 1j * np.random.random(0).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((0), self.dtype)
self.grad_x = np.zeros(self.grad_out.shape) + 1j * np.real(
self.grad_out
)
class TestImagOpZeroSize2(TestImagOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random((0, 5)).astype(self.dtype)
+ 1j * np.random.random((0, 5)).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((0, 5), self.dtype)
self.grad_x = np.zeros(self.grad_out.shape) + 1j * np.real(
self.grad_out
)
class TestImagOpZeroSize3(TestImagOp):
def init_input_output(self):
self.inputs = {
'X': np.random.random((20, 0, 5)).astype(self.dtype)
+ 1j * np.random.random((20, 0, 5)).astype(self.dtype)
}
self.outputs = {'Out': numpy_apis[self.op_type](self.inputs['X'])}
def init_grad_input_output(self):
self.grad_out = np.ones((20, 0, 5), self.dtype)
self.grad_x = np.zeros(self.grad_out.shape) + 1j * np.real(
self.grad_out
)
class TestRealAPI(unittest.TestCase):
def setUp(self):
# switch to static
paddle.enable_static()
# prepare test attrs
self.api = "real"
self.dtypes = ["complex64", "complex128"]
self.places = get_places()
self._shape = [2, 20, 2, 3]
def test_in_static_mode(self):
def init_input_output(dtype):
input = np.random.random(self._shape).astype(
dtype
) + 1j * np.random.random(self._shape).astype(dtype)
return {'x': input}, numpy_apis[self.api](input)
for dtype in self.dtypes:
input_dict, np_res = init_input_output(dtype)
for place in self.places:
with static.program_guard(static.Program()):
x = static.data(name="x", shape=self._shape, dtype=dtype)
out = paddle_apis[self.api](x)
exe = static.Executor(place)
out_value = exe.run(feed=input_dict, fetch_list=[out])
np.testing.assert_array_equal(np_res, out_value[0])
def test_in_dynamic_mode(self):
for dtype in self.dtypes:
input = np.random.random(self._shape).astype(
dtype
) + 1j * np.random.random(self._shape).astype(dtype)
np_res = numpy_apis[self.api](input)
for place in self.places:
# it is more convenient to use `guard` than `enable/disable_**` here
with base.dygraph.guard(place):
input_t = paddle.to_tensor(input)
res = paddle_apis[self.api](input_t).numpy()
np.testing.assert_array_equal(np_res, res)
res_t = (
input_t.real().numpy()
if self.api == "real"
else input_t.imag().numpy()
)
np.testing.assert_array_equal(np_res, res_t)
def test_dtype_static_error(self):
# in static graph mode
with (
self.assertRaises(TypeError),
static.program_guard(static.Program()),
):
x = static.data(name="x", shape=self._shape, dtype="float32")
out = paddle_apis[self.api](x, name="real_res")
def test_dtype_dygraph_error(self):
# in dynamic mode
with (
self.assertRaises(RuntimeError),
base.dygraph.guard(),
):
input = np.random.random(self._shape).astype("float32")
input_t = paddle.to_tensor(input)
res = paddle_apis[self.api](input_t)
class TestImagAPI(TestRealAPI):
def setUp(self):
# switch to static
paddle.enable_static()
# prepare test attrs
self.api = "imag"
self.dtypes = ["complex64", "complex128"]
self.places = get_places()
self.init_shape()
def init_shape(self):
self._shape = [2, 20, 2, 3]
class TestImagAPIZeroSize(TestImagAPI):
def init_shape(self):
self._shape = [2, 0, 2, 3]
class TestImagAPIZeroSize1(TestImagAPI):
def init_shape(self):
self._shape = [2, 0, 0, 3]
class TestImagAPIZeroSize2(TestImagAPI):
def init_shape(self):
self._shape = [0, 0, 0, 0]
class TestImagAPIZeroDtype(unittest.TestCase):
def init_data(self):
self.shape = [8, 0, 8]
self.dtype = 'float32'
self.expact_dtype = paddle.float32
def test_dtype(self):
with paddle.base.dygraph.guard():
self.init_data()
real_part = paddle.rand(self.shape, dtype=self.dtype)
imag_part = paddle.rand(self.shape, dtype=self.dtype)
complex_matrix = paddle.complex(real_part, imag_part)
imag = paddle.imag(complex_matrix)
self.assertTrue(imag.dtype == self.expact_dtype)
class TestImagAPIZeroDtype1(TestImagAPIZeroDtype):
def init_shape(self):
self.shape = [8, 0, 8]
self.dtype = 'float64'
self.expact_dtype = paddle.float64
class TestRealAPIZeroDtype(unittest.TestCase):
def init_data(self):
self.shape = [8, 0, 8]
self.dtype = 'float32'
self.expact_dtype = paddle.float32
def test_dtype(self):
with paddle.base.dygraph.guard():
self.init_data()
real_part = paddle.rand(self.shape, dtype=self.dtype)
imag_part = paddle.rand(self.shape, dtype=self.dtype)
complex_matrix = paddle.complex(real_part, imag_part)
real = paddle.real(complex_matrix)
self.assertTrue(real.dtype == self.expact_dtype)
if __name__ == "__main__":
unittest.main()