test_squeeze_op.py 6.1 KB
Newer Older
1
#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14
#
# 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.

15
from __future__ import print_function
16
import unittest
17

18
import numpy as np
19 20

import paddle
21 22
import paddle.fluid as fluid
from paddle.fluid import compiler, Program, program_guard
23
from op_test import OpTest
24

25
paddle.enable_static()
26 27 28


# Correct: General.
C
chenweihang 已提交
29
class TestSqueezeOp(OpTest):
30
    def setUp(self):
31
        self.op_type = "squeeze"
C
chenweihang 已提交
32
        self.init_test_case()
33
        self.inputs = {"X": np.random.random(self.ori_shape).astype("float64")}
C
chenweihang 已提交
34
        self.init_attrs()
35
        self.outputs = {"Out": self.inputs["X"].reshape(self.new_shape), }
36 37

    def test_check_output(self):
38
        self.check_output()
39 40 41 42

    def test_check_grad(self):
        self.check_grad(["X"], "Out")

C
chenweihang 已提交
43
    def init_test_case(self):
Z
zhupengyang 已提交
44
        self.ori_shape = (1, 3, 1, 40)
C
chenweihang 已提交
45
        self.axes = (0, 2)
Z
zhupengyang 已提交
46
        self.new_shape = (3, 40)
47

C
chenweihang 已提交
48
    def init_attrs(self):
49
        self.attrs = {"axes": self.axes}
50 51


C
chenweihang 已提交
52 53 54
# Correct: There is mins axis.
class TestSqueezeOp1(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
55
        self.ori_shape = (1, 3, 1, 40)
C
chenweihang 已提交
56
        self.axes = (0, -2)
Z
zhupengyang 已提交
57
        self.new_shape = (3, 40)
58 59 60


# Correct: No axes input.
C
chenweihang 已提交
61 62
class TestSqueezeOp2(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
63
        self.ori_shape = (1, 20, 1, 5)
C
chenweihang 已提交
64
        self.axes = ()
Z
zhupengyang 已提交
65
        self.new_shape = (20, 5)
66 67 68


# Correct: Just part of axes be squeezed. 
C
chenweihang 已提交
69 70
class TestSqueezeOp3(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
71
        self.ori_shape = (6, 1, 5, 1, 4, 1)
C
chenweihang 已提交
72
        self.axes = (1, -1)
Z
zhupengyang 已提交
73
        self.new_shape = (6, 5, 1, 4)
74 75


L
Leo Chen 已提交
76 77 78 79 80 81 82 83
# Correct: The demension of axis is not of size 1 remains unchanged.
class TestSqueezeOp4(TestSqueezeOp):
    def init_test_case(self):
        self.ori_shape = (6, 1, 5, 1, 4, 1)
        self.axes = (1, 2)
        self.new_shape = (6, 5, 1, 4, 1)


84
class TestSqueezeOpError(unittest.TestCase):
85
    def test_errors(self):
86
        paddle.enable_static()
87 88 89
        with program_guard(Program(), Program()):
            # The input type of softmax_op must be Variable.
            x1 = fluid.create_lod_tensor(
90 91
                np.array([[-1]]), [[1]], paddle.CPUPlace())
            self.assertRaises(TypeError, paddle.squeeze, x1)
92
            # The input axes of squeeze must be list.
93 94
            x2 = paddle.static.data(name='x2', shape=[4], dtype="int32")
            self.assertRaises(TypeError, paddle.squeeze, x2, axes=0)
95
            # The input dtype of squeeze not support float16.
96 97
            x3 = paddle.static.data(name='x3', shape=[4], dtype="float16")
            self.assertRaises(TypeError, paddle.squeeze, x3, axes=0)
98 99


100
class API_TestSqueeze(unittest.TestCase):
101 102 103 104 105 106
    def setUp(self):
        self.executed_api()

    def executed_api(self):
        self.squeeze = paddle.squeeze

107
    def test_out(self):
108 109 110 111
        paddle.enable_static()
        with paddle.static.program_guard(paddle.static.Program(),
                                         paddle.static.Program()):
            data1 = paddle.static.data(
112
                'data1', shape=[-1, 1, 10], dtype='float64')
113
            result_squeeze = self.squeeze(data1, axis=[1])
114 115
            place = paddle.CPUPlace()
            exe = paddle.static.Executor(place)
116 117 118 119 120 121 122
            input1 = np.random.random([5, 1, 10]).astype('float64')
            result, = exe.run(feed={"data1": input1},
                              fetch_list=[result_squeeze])
            expected_result = np.squeeze(input1, axis=1)
            self.assertTrue(np.allclose(expected_result, result))


123 124 125 126 127
class API_TestStaticSqueeze_(API_TestSqueeze):
    def executed_api(self):
        self.squeeze = paddle.squeeze_


128
class API_TestDygraphSqueeze(unittest.TestCase):
129 130 131 132 133 134
    def setUp(self):
        self.executed_api()

    def executed_api(self):
        self.squeeze = paddle.squeeze

135
    def test_out(self):
136 137 138
        paddle.disable_static()
        input_1 = np.random.random([5, 1, 10]).astype("int32")
        input = paddle.to_tensor(input_1)
139
        output = self.squeeze(input, axis=[1])
140 141 142 143 144 145 146 147
        out_np = output.numpy()
        expected_out = np.squeeze(input_1, axis=1)
        self.assertTrue(np.allclose(expected_out, out_np))

    def test_out_int8(self):
        paddle.disable_static()
        input_1 = np.random.random([5, 1, 10]).astype("int8")
        input = paddle.to_tensor(input_1)
148
        output = self.squeeze(input, axis=[1])
149 150 151 152 153 154 155 156
        out_np = output.numpy()
        expected_out = np.squeeze(input_1, axis=1)
        self.assertTrue(np.allclose(expected_out, out_np))

    def test_out_uint8(self):
        paddle.disable_static()
        input_1 = np.random.random([5, 1, 10]).astype("uint8")
        input = paddle.to_tensor(input_1)
157
        output = self.squeeze(input, axis=[1])
158 159 160
        out_np = output.numpy()
        expected_out = np.squeeze(input_1, axis=1)
        self.assertTrue(np.allclose(expected_out, out_np))
L
Leo Chen 已提交
161 162

    def test_axis_not_list(self):
163 164 165
        paddle.disable_static()
        input_1 = np.random.random([5, 1, 10]).astype("int32")
        input = paddle.to_tensor(input_1)
166
        output = self.squeeze(input, axis=1)
167 168 169
        out_np = output.numpy()
        expected_out = np.squeeze(input_1, axis=1)
        self.assertTrue(np.allclose(expected_out, out_np))
L
Leo Chen 已提交
170 171

    def test_dimension_not_1(self):
172 173 174
        paddle.disable_static()
        input_1 = np.random.random([5, 1, 10]).astype("int32")
        input = paddle.to_tensor(input_1)
175
        output = self.squeeze(input, axis=(1, 0))
176 177 178
        out_np = output.numpy()
        expected_out = np.squeeze(input_1, axis=1)
        self.assertTrue(np.allclose(expected_out, out_np))
179 180


181 182 183 184 185
class API_TestDygraphSqueezeInplace(API_TestDygraphSqueeze):
    def executed_api(self):
        self.squeeze = paddle.squeeze_


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