test_complex_kron.py 3.3 KB
Newer Older
F
Feiyu Chan 已提交
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.

from paddle import fluid, tensor
16
import paddle
F
Feiyu Chan 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
import paddle.fluid.dygraph as dg
import numpy as np
import unittest


class ComplexKronTestCase(unittest.TestCase):
    def __init__(self, methodName='runTest', x=None, y=None):
        super(ComplexKronTestCase, self).__init__(methodName)
        self.x = x
        self.y = y

    def setUp(self):
        self.ref_result = np.kron(self.x, self.y)
C
chentianyu03 已提交
30 31 32
        self._places = [paddle.CPUPlace()]
        if fluid.is_compiled_with_cuda():
            self._places.append(paddle.CUDAPlace(0))
F
Feiyu Chan 已提交
33 34

    def runTest(self):
C
chentianyu03 已提交
35 36 37
        for place in self._places:
            self.test_complex_api(place)
            self.test_basic_api(place)
F
Feiyu Chan 已提交
38

C
chentianyu03 已提交
39
    def test_complex_api(self, place):
F
Feiyu Chan 已提交
40 41 42
        with dg.guard(place):
            x_var = dg.to_variable(self.x)
            y_var = dg.to_variable(self.y)
43
            out_var = paddle.complex.kron(x_var, y_var)
C
chentianyu03 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
            self.assertTrue(np.allclose(out_var.numpy(), self.ref_result))

    def test_basic_api(self, place):
        with dg.guard(place):
            x_var = paddle.Tensor(
                value=self.x,
                place=place,
                persistable=False,
                zero_copy=None,
                stop_gradient=True)

            y_var = paddle.Tensor(
                value=self.y,
                place=place,
                persistable=False,
                zero_copy=None,
                stop_gradient=True)

            out_var = tensor.math.kron(x_var, y_var)
            self.assertTrue(np.allclose(out_var.numpy(), self.ref_result))
F
Feiyu Chan 已提交
64 65 66 67


def load_tests(loader, standard_tests, pattern):
    suite = unittest.TestSuite()
C
chentianyu03 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    for dtype in ["float32", "float64"]:
        suite.addTest(
            ComplexKronTestCase(
                x=np.random.randn(2, 2).astype(dtype) + 1j * np.random.randn(
                    2, 2).astype(dtype),
                y=np.random.randn(3, 3).astype(dtype) + 1j * np.random.randn(
                    3, 3).astype(dtype)))
        suite.addTest(
            ComplexKronTestCase(
                x=np.random.randn(2, 2).astype(dtype),
                y=np.random.randn(3, 3).astype(dtype) + 1j * np.random.randn(
                    3, 3).astype(dtype)))
        suite.addTest(
            ComplexKronTestCase(
                x=np.random.randn(2, 2).astype(dtype) + 1j * np.random.randn(
                    2, 2).astype(dtype),
                y=np.random.randn(3, 3).astype(dtype)))

        suite.addTest(
            ComplexKronTestCase(
                x=np.random.randn(2, 2).astype(dtype) + 1j * np.random.randn(
                    2, 2).astype(dtype),
                y=np.random.randn(2, 2, 3).astype(dtype)))
F
Feiyu Chan 已提交
91 92 93 94 95 96

    return suite


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