test_complex_kron.py 2.6 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)
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):
35
        for place in self._places:
C
chentianyu03 已提交
36
            self.test_kron_api(place)
F
Feiyu Chan 已提交
37

C
chentianyu03 已提交
38
    def test_kron_api(self, place):
F
Feiyu Chan 已提交
39 40 41
        with dg.guard(place):
            x_var = dg.to_variable(self.x)
            y_var = dg.to_variable(self.y)
C
chentianyu03 已提交
42
            out_var = paddle.kron(x_var, y_var)
43
            self.assertTrue(np.allclose(out_var.numpy(), self.ref_result))
F
Feiyu Chan 已提交
44 45 46 47


def load_tests(loader, standard_tests, pattern):
    suite = unittest.TestSuite()
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    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 已提交
71 72 73 74 75 76

    return suite


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