test_squeeze_op.py 2.8 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 16
from __future__ import print_function

17 18
import unittest
import numpy as np
19 20
import paddle.fluid as fluid
from paddle.fluid import compiler, Program, program_guard
21

22
from op_test import OpTest
23 24 25


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

    def test_check_output(self):
35
        self.check_output()
36 37 38 39

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

C
chenweihang 已提交
40 41 42 43
    def init_test_case(self):
        self.ori_shape = (1, 3, 1, 5)
        self.axes = (0, 2)
        self.new_shape = (3, 5)
44

C
chenweihang 已提交
45
    def init_attrs(self):
46
        self.attrs = {"axes": self.axes}
47 48


C
chenweihang 已提交
49 50 51 52 53 54
# Correct: There is mins axis.
class TestSqueezeOp1(TestSqueezeOp):
    def init_test_case(self):
        self.ori_shape = (1, 3, 1, 5)
        self.axes = (0, -2)
        self.new_shape = (3, 5)
55 56 57


# Correct: No axes input.
C
chenweihang 已提交
58 59 60 61 62
class TestSqueezeOp2(TestSqueezeOp):
    def init_test_case(self):
        self.ori_shape = (1, 3, 1, 5)
        self.axes = ()
        self.new_shape = (3, 5)
63 64 65


# Correct: Just part of axes be squeezed. 
C
chenweihang 已提交
66 67 68 69 70
class TestSqueezeOp3(TestSqueezeOp):
    def init_test_case(self):
        self.ori_shape = (3, 1, 5, 1, 4, 1)
        self.axes = (1, -1)
        self.new_shape = (3, 5, 1, 4)
71 72


73
class TestSqueezeOpError(unittest.TestCase):
74 75 76 77 78 79 80 81 82 83 84 85 86 87
    def test_errors(self):
        with program_guard(Program(), Program()):
            # The input type of softmax_op must be Variable.
            x1 = fluid.create_lod_tensor(
                np.array([[-1]]), [[1]], fluid.CPUPlace())
            self.assertRaises(TypeError, fluid.layers.squeeze, x1)
            # The input axes of squeeze must be list.
            x2 = fluid.layers.data(name='x2', shape=[4], dtype="int32")
            self.assertRaises(TypeError, fluid.layers.squeeze, x2, axes=0)
            # The input dtype of squeeze not support float16.
            x3 = fluid.layers.data(name='x3', shape=[4], dtype="float16")
            self.assertRaises(TypeError, fluid.layers.squeeze, x3, axes=0)


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