test_triu_indices_op.py 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
# 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
import paddle
import paddle.fluid as fluid
from paddle.fluid.framework import _test_eager_guard


class TestTriuIndicesOp(OpTest):
    def setUp(self):
        self.op_type = "triu_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 = {'row': 4, 'col': 4, 'offset': -1}
36 37 38
        self.target = np.triu_indices(
            self.attrs['row'], self.attrs['offset'], self.attrs['col']
        )
39 40 41 42 43 44 45 46 47 48 49 50 51
        self.target = np.array(self.target)


class TestTriuIndicesOpCase1(TestTriuIndicesOp):
    def init_config(self):
        self.attrs = {'row': 0, 'col': 0, 'offset': 0}
        self.target = np.triu_indices(0, 0, 0)
        self.target = np.array(self.target)


class TestTriuIndicesOpCase2(TestTriuIndicesOp):
    def init_config(self):
        self.attrs = {'row': 4, 'col': 4, 'offset': 2}
52 53 54
        self.target = np.triu_indices(
            self.attrs['row'], self.attrs['offset'], self.attrs['col']
        )
55 56 57 58 59 60 61 62 63
        self.target = np.array(self.target)


class TestTriuIndicesAPICaseStatic(unittest.TestCase):
    def test_static(self):
        if fluid.core.is_compiled_with_cuda():
            place = paddle.fluid.CUDAPlace(0)
        else:
            place = paddle.CPUPlace()
64 65 66
        with paddle.static.program_guard(
            paddle.static.Program(), paddle.static.Program()
        ):
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 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
            data = paddle.triu_indices(4, 4, -1)
            exe = paddle.static.Executor(place)
            result = exe.run(feed={}, fetch_list=[data])
        expected_result = np.triu_indices(4, -1, 4)
        np.testing.assert_array_equal(result[0], expected_result)


class TestTriuIndicesAPICaseDygraph(unittest.TestCase):
    def test_dygraph(self):
        if fluid.core.is_compiled_with_cuda():
            place = paddle.fluid.CUDAPlace(0)
        else:
            place = paddle.CPUPlace()
        with fluid.dygraph.base.guard(place=place):
            out = paddle.triu_indices(4, 4, 2)
        expected_result = np.triu_indices(4, 2, 4)
        np.testing.assert_array_equal(out, expected_result)

    def test_dygraph_eager(self):
        with _test_eager_guard():
            self.test_dygraph()


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

        self.assertRaises(TypeError, test_num_rows_type_check)

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

        self.assertRaises(TypeError, test_num_columns_type_check)

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

        self.assertRaises(TypeError, test_num_offset_type_check)


class TestTriuIndicesAPICaseDefault(unittest.TestCase):
    def test_default_CPU(self):
        paddle.enable_static()
111 112 113
        with paddle.static.program_guard(
            paddle.static.Program(), paddle.static.Program()
        ):
114 115 116 117 118 119 120 121 122 123 124 125 126 127
            data = paddle.triu_indices(4, None, 2)
            exe = paddle.static.Executor(paddle.CPUPlace())
            result = exe.run(feed={}, fetch_list=[data])
        expected_result = np.triu_indices(4, 2)
        np.testing.assert_array_equal(result[0], expected_result)

        with fluid.dygraph.base.guard(paddle.CPUPlace()):
            out = paddle.triu_indices(4, None, 2)
        expected_result = np.triu_indices(4, 2)
        np.testing.assert_array_equal(out, expected_result)


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