test_eye_op.py 7.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#   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

17
import os
18 19 20 21
import unittest
import numpy as np
from op_test import OpTest

22 23
import paddle
import paddle.fluid as fluid
24 25
import paddle.fluid.framework as framework

26 27 28
from paddle.fluid.framework import program_guard, Program
from test_attribute_var import UnittestBase

29 30

class TestEyeOp(OpTest):
31

32 33 34 35
    def setUp(self):
        '''
	Test eye op with specified shape
        '''
R
Ruibiao Chen 已提交
36
        self.python_api = paddle.eye
37 38 39 40 41 42 43 44 45 46 47
        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 已提交
48
        self.check_output(check_eager=True)
49 50 51


class TestEyeOp1(OpTest):
52

53 54 55 56
    def setUp(self):
        '''
	Test eye op with default parameters
        '''
R
Ruibiao Chen 已提交
57
        self.python_api = paddle.eye
58 59 60 61 62 63 64
        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 已提交
65
        self.check_output(check_eager=True)
66 67 68


class TestEyeOp2(OpTest):
69

70 71 72 73
    def setUp(self):
        '''
        Test eye op with specified shape
        '''
R
Ruibiao Chen 已提交
74
        self.python_api = paddle.eye
75 76 77 78 79 80 81
        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 已提交
82
        self.check_output(check_eager=True)
83 84


85
class API_TestTensorEye(unittest.TestCase):
86

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

96
        with paddle.static.program_guard(paddle.static.Program()):
97
            data = paddle.eye(10, num_columns=7, dtype="float64")
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, 7, dtype="float64")
        self.assertEqual((result == expected_result).all(), True)

104
        with paddle.static.program_guard(paddle.static.Program()):
105
            data = paddle.eye(10, dtype="int64")
106
            place = paddle.CPUPlace()
107
            exe = paddle.static.Executor(place)
108 109 110 111
            result, = exe.run(fetch_list=[data])
            expected_result = np.eye(10, dtype="int64")
        self.assertEqual((result == expected_result).all(), True)

112 113 114 115
        paddle.disable_static()
        out = paddle.eye(10, dtype="int64")
        expected_result = np.eye(10, dtype="int64")
        paddle.enable_static()
116 117
        self.assertEqual((out.numpy() == expected_result).all(), True)

118 119 120 121 122 123 124 125 126 127 128 129
        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()
130 131 132 133
        self.assertEqual(out.numpy().shape == np.array(expected_result).shape,
                         True)
        self.assertEqual((out.numpy() == expected_result).all(), True)

134 135 136 137 138 139 140 141 142 143 144 145
        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()
146 147 148 149
        self.assertEqual(out.numpy().shape == np.array(expected_result).shape,
                         True)
        self.assertEqual((out.numpy() == expected_result).all(), True)

150
    def test_errors(self):
151
        with paddle.static.program_guard(paddle.static.Program()):
152 153 154 155 156 157 158 159 160 161 162

            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 已提交
163
            def test_num_columns_type_check1():
164 165
                paddle.eye(10, num_columns=10, dtype="int8")

Z
zhangchunle 已提交
166
            self.assertRaises(TypeError, test_num_columns_type_check1)
167

168

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
class TestEyeRowsCol(UnittestBase):

    def init_info(self):
        self.shapes = [[2, 3, 4]]
        self.save_path = os.path.join(self.temp_dir.name, self.path_prefix())

    def test_static(self):
        main_prog = Program()
        starup_prog = Program()
        with program_guard(main_prog, starup_prog):
            fc = paddle.nn.Linear(4, 10)
            x = paddle.randn([2, 3, 4])
            x.stop_gradient = False
            feat = fc(x)  # [2,3,10]

            tmp = self.call_func(feat)
            out = feat + tmp

            sgd = paddle.optimizer.SGD()
            sgd.minimize(paddle.mean(out))
            self.assertTrue(self.var_prefix() in str(main_prog))

            exe = paddle.static.Executor()
            exe.run(starup_prog)
            res = exe.run(fetch_list=[tmp, out])
            gt = np.eye(3, 10)
            np.testing.assert_allclose(res[0], gt)
            paddle.static.save_inference_model(self.save_path, [x], [tmp, out],
                                               exe)
            # Test for Inference Predictor
            infer_outs = self.infer_prog()
            np.testing.assert_allclose(infer_outs[0], gt)

    def path_prefix(self):
        return 'eye_rows_cols'

    def var_prefix(self):
        return "Var["

    def call_func(self, x):
        rows = paddle.assign(3)
        cols = paddle.assign(10)
        out = paddle.eye(rows, cols)
        return out

    def test_error(self):
        with self.assertRaises(TypeError):
            paddle.eye(-1)


class TestEyeRowsCol2(TestEyeRowsCol):

    def call_func(self, x):
        rows = paddle.assign(3)
        cols = paddle.assign(10)
        out = paddle.fluid.layers.eye(rows, cols)
        return out

    def test_error(self):
        with self.assertRaises(TypeError):
            paddle.fluid.layers.eye(-1)


232
if __name__ == "__main__":
233
    paddle.enable_static()
234
    unittest.main()