test_eye_op.py 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#   Copyright (c) 2019 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 __future__ import print_function

import unittest
import numpy as np
from op_test import OpTest

21 22
import paddle
import paddle.fluid as fluid
23 24 25 26 27 28 29 30
import paddle.fluid.framework as framework


class TestEyeOp(OpTest):
    def setUp(self):
        '''
	Test eye op with specified shape
        '''
R
Ruibiao Chen 已提交
31
        self.python_api = paddle.eye
32 33 34 35 36 37 38 39 40 41 42
        self.op_type = "eye"

        self.inputs = {}
        self.attrs = {
            'num_rows': 219,
            'num_columns': 319,
            'dtype': framework.convert_np_dtype_to_dtype_(np.int32)
        }
        self.outputs = {'Out': np.eye(219, 319, dtype=np.int32)}

    def test_check_output(self):
R
Ruibiao Chen 已提交
43
        self.check_output(check_eager=True)
44 45 46 47 48 49 50


class TestEyeOp1(OpTest):
    def setUp(self):
        '''
	Test eye op with default parameters
        '''
R
Ruibiao Chen 已提交
51
        self.python_api = paddle.eye
52 53 54 55 56 57 58
        self.op_type = "eye"

        self.inputs = {}
        self.attrs = {'num_rows': 50}
        self.outputs = {'Out': np.eye(50, dtype=float)}

    def test_check_output(self):
R
Ruibiao Chen 已提交
59
        self.check_output(check_eager=True)
60 61 62 63 64 65 66


class TestEyeOp2(OpTest):
    def setUp(self):
        '''
        Test eye op with specified shape
        '''
R
Ruibiao Chen 已提交
67
        self.python_api = paddle.eye
68 69 70 71 72 73 74
        self.op_type = "eye"

        self.inputs = {}
        self.attrs = {'num_rows': 99, 'num_columns': 1}
        self.outputs = {'Out': np.eye(99, 1, dtype=float)}

    def test_check_output(self):
R
Ruibiao Chen 已提交
75
        self.check_output(check_eager=True)
76 77


78 79
class API_TestTensorEye(unittest.TestCase):
    def test_out(self):
80
        with paddle.static.program_guard(paddle.static.Program()):
81 82
            data = paddle.eye(10)
            place = fluid.CPUPlace()
83
            exe = paddle.static.Executor(place)
84 85 86 87
            result, = exe.run(fetch_list=[data])
            expected_result = np.eye(10, dtype="float32")
        self.assertEqual((result == expected_result).all(), True)

88
        with paddle.static.program_guard(paddle.static.Program()):
89
            data = paddle.eye(10, num_columns=7, dtype="float64")
90
            place = paddle.CPUPlace()
91
            exe = paddle.static.Executor(place)
92 93 94 95
            result, = exe.run(fetch_list=[data])
            expected_result = np.eye(10, 7, dtype="float64")
        self.assertEqual((result == expected_result).all(), True)

96
        with paddle.static.program_guard(paddle.static.Program()):
97
            data = paddle.eye(10, dtype="int64")
98
            place = paddle.CPUPlace()
99
            exe = paddle.static.Executor(place)
100 101 102 103
            result, = exe.run(fetch_list=[data])
            expected_result = np.eye(10, dtype="int64")
        self.assertEqual((result == expected_result).all(), True)

104 105 106 107
        paddle.disable_static()
        out = paddle.eye(10, dtype="int64")
        expected_result = np.eye(10, dtype="int64")
        paddle.enable_static()
108 109
        self.assertEqual((out.numpy() == expected_result).all(), True)

110 111 112 113 114 115 116 117 118 119 120 121
        paddle.disable_static()
        batch_shape = [2]
        out = fluid.layers.eye(10, 10, dtype="int64", batch_shape=batch_shape)
        result = np.eye(10, dtype="int64")
        expected_result = []
        for index in reversed(batch_shape):
            tmp_result = []
            for i in range(index):
                tmp_result.append(result)
            result = tmp_result
            expected_result = np.stack(result, axis=0)
        paddle.enable_static()
122 123 124 125
        self.assertEqual(out.numpy().shape == np.array(expected_result).shape,
                         True)
        self.assertEqual((out.numpy() == expected_result).all(), True)

126 127 128 129 130 131 132 133 134 135 136 137
        paddle.disable_static()
        batch_shape = [3, 2]
        out = fluid.layers.eye(10, 10, dtype="int64", batch_shape=batch_shape)
        result = np.eye(10, dtype="int64")
        expected_result = []
        for index in reversed(batch_shape):
            tmp_result = []
            for i in range(index):
                tmp_result.append(result)
            result = tmp_result
            expected_result = np.stack(result, axis=0)
        paddle.enable_static()
138 139 140 141
        self.assertEqual(out.numpy().shape == np.array(expected_result).shape,
                         True)
        self.assertEqual((out.numpy() == expected_result).all(), True)

142
    def test_errors(self):
143
        with paddle.static.program_guard(paddle.static.Program()):
144 145 146 147 148 149 150 151 152 153 154

            def test_num_rows_type_check():
                paddle.eye(-1, dtype="int64")

            self.assertRaises(TypeError, test_num_rows_type_check)

            def test_num_columns_type_check():
                paddle.eye(10, num_columns=5.2, dtype="int64")

            self.assertRaises(TypeError, test_num_columns_type_check)

Z
zhangchunle 已提交
155
            def test_num_columns_type_check1():
156 157
                paddle.eye(10, num_columns=10, dtype="int8")

Z
zhangchunle 已提交
158
            self.assertRaises(TypeError, test_num_columns_type_check1)
159

160

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