test_tril_indices_op.py 4.3 KB
Newer Older
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.

import unittest
16

17 18
import numpy as np
from op_test import OpTest
19

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
import paddle
import paddle.fluid as fluid


class TestTrilIndicesOp(OpTest):
    def setUp(self):
        self.op_type = "tril_indices"
        self.inputs = {}
        self.init_config()
        self.outputs = {'out': self.target}

    def test_check_output(self):
        paddle.enable_static()
        self.check_output()

    def init_config(self):
        self.attrs = {'rows': 4, 'cols': 4, 'offset': -1}
37 38 39
        self.target = np.tril_indices(
            self.attrs['rows'], self.attrs['offset'], self.attrs['cols']
        )
40 41 42 43 44 45 46 47 48 49 50 51 52
        self.target = np.array(self.target)


class TestTrilIndicesOpCase1(TestTrilIndicesOp):
    def init_config(self):
        self.attrs = {'rows': 0, 'cols': 0, 'offset': 0}
        self.target = np.tril_indices(0, 0, 0)
        self.target = np.array(self.target)


class TestTrilIndicesOpCase2(TestTrilIndicesOp):
    def init_config(self):
        self.attrs = {'rows': 4, 'cols': 4, 'offset': 2}
53 54 55
        self.target = np.tril_indices(
            self.attrs['rows'], self.attrs['offset'], self.attrs['cols']
        )
56 57 58 59 60
        self.target = np.array(self.target)


class TestTrilIndicesAPICaseStatic(unittest.TestCase):
    def test_static(self):
61 62 63 64 65
        places = (
            [paddle.CPUPlace(), paddle.fluid.CUDAPlace(0)]
            if fluid.core.is_compiled_with_cuda()
            else [paddle.CPUPlace()]
        )
66 67
        paddle.enable_static()
        for place in places:
68 69 70
            with paddle.static.program_guard(
                paddle.static.Program(), paddle.static.Program()
            ):
71 72
                data1 = paddle.tril_indices(4, 4, -1)
                exe1 = paddle.static.Executor(place)
73
                (result1,) = exe1.run(feed={}, fetch_list=[data1])
74
            expected_result1 = np.tril_indices(4, -1, 4)
75
            np.testing.assert_allclose(result1, expected_result1, rtol=1e-05)
76 77 78 79


class TestTrilIndicesAPICaseDygraph(unittest.TestCase):
    def test_dygraph(self):
80 81 82 83 84
        places = (
            [paddle.CPUPlace(), paddle.fluid.CUDAPlace(0)]
            if fluid.core.is_compiled_with_cuda()
            else [paddle.CPUPlace()]
        )
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        for place in places:
            with fluid.dygraph.base.guard(place=place):
                out1 = paddle.tril_indices(4, 4, 2)
            expected_result1 = np.tril_indices(4, 2, 4)
            self.assertEqual((out1.numpy() == expected_result1).all(), True)


class TestTrilIndicesAPICaseError(unittest.TestCase):
    def test_case_error(self):
        def test_num_rows_type_check():
            out1 = paddle.tril_indices(1.0, 1, 2)

        self.assertRaises(TypeError, test_num_rows_type_check)

        def test_num_columns_type_check():
            out2 = paddle.tril_indices(4, -1, 2)

        self.assertRaises(TypeError, test_num_columns_type_check)

        def test_num_offset_type_check():
            out3 = paddle.tril_indices(4, 4, 2.0)

        self.assertRaises(TypeError, test_num_offset_type_check)


class TestTrilIndicesAPICaseDefault(unittest.TestCase):
    def test_default_CPU(self):
        paddle.enable_static()
113 114 115
        with paddle.static.program_guard(
            paddle.static.Program(), paddle.static.Program()
        ):
116 117
            data = paddle.tril_indices(4, None, 2)
            exe = paddle.static.Executor(paddle.CPUPlace())
118
            (result,) = exe.run(feed={}, fetch_list=[data])
119
        expected_result = np.tril_indices(4, 2)
120
        np.testing.assert_allclose(result, expected_result, rtol=1e-05)
121 122 123 124 125 126 127 128 129

        with fluid.dygraph.base.guard(paddle.CPUPlace()):
            out = paddle.tril_indices(4, None, 2)
        expected_result = np.tril_indices(4, 2)
        self.assertEqual((out.numpy() == expected_result).all(), True)


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