test_compare_reduce_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
#   Copyright (c) 2018 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 op_test
import unittest
import numpy as np
import paddle
import paddle.fluid as fluid


W
wawltor 已提交
22
def create_test_not_equal_class(op_type, typename, callback):
23 24
    class Cls(op_test.OpTest):
        def setUp(self):
W
wawltor 已提交
25 26
            x = np.random.random(size=(10, 7)).astype(typename)
            y = np.random.random(size=(10, 7)).astype(typename)
27
            z = callback(x, y)
H
hong 已提交
28
            self.python_api = paddle.tensor.equal_all
29 30 31 32 33
            self.inputs = {'X': x, 'Y': y}
            self.outputs = {'Out': z}
            self.op_type = op_type

        def test_output(self):
H
hong 已提交
34
            self.check_output(check_eager=True)
35

W
wawltor 已提交
36
    cls_name = "{0}_{1}_{2}".format(op_type, typename, 'not_equal_all')
37 38 39 40
    Cls.__name__ = cls_name
    globals()[cls_name] = Cls


W
wawltor 已提交
41
def create_test_not_shape_equal_class(op_type, typename, callback):
42 43 44
    class Cls(op_test.OpTest):
        def setUp(self):
            x = np.random.random(size=(10, 7)).astype(typename)
W
wawltor 已提交
45
            y = np.random.random(size=(10)).astype(typename)
46
            z = callback(x, y)
H
hong 已提交
47
            self.python_api = paddle.tensor.equal_all
48 49 50 51 52
            self.inputs = {'X': x, 'Y': y}
            self.outputs = {'Out': z}
            self.op_type = op_type

        def test_output(self):
H
hong 已提交
53
            self.check_output(check_eager=True)
54

W
wawltor 已提交
55
    cls_name = "{0}_{1}_{2}".format(op_type, typename, 'not_shape_equal_all')
56 57 58 59 60 61 62 63 64
    Cls.__name__ = cls_name
    globals()[cls_name] = Cls


def create_test_equal_class(op_type, typename, callback):
    class Cls(op_test.OpTest):
        def setUp(self):
            x = y = np.random.random(size=(10, 7)).astype(typename)
            z = callback(x, y)
H
hong 已提交
65
            self.python_api = paddle.tensor.equal_all
66 67 68 69 70
            self.inputs = {'X': x, 'Y': y}
            self.outputs = {'Out': z}
            self.op_type = op_type

        def test_output(self):
H
hong 已提交
71
            self.check_output(check_eager=True)
72

W
wawltor 已提交
73
    cls_name = "{0}_{1}_{2}".format(op_type, typename, 'equal_all')
74 75 76 77
    Cls.__name__ = cls_name
    globals()[cls_name] = Cls


78 79 80 81 82 83 84
def create_test_dim1_class(op_type, typename, callback):
    class Cls(op_test.OpTest):
        def setUp(self):
            x = y = np.random.random(size=(1)).astype(typename)
            x = np.array([True, False, True]).astype(typename)
            x = np.array([False, False, True]).astype(typename)
            z = callback(x, y)
H
hong 已提交
85
            self.python_api = paddle.tensor.equal_all
86 87 88 89 90
            self.inputs = {'X': x, 'Y': y}
            self.outputs = {'Out': z}
            self.op_type = op_type

        def test_output(self):
H
hong 已提交
91
            self.check_output(check_eager=True)
92 93 94 95 96 97

    cls_name = "{0}_{1}_{2}".format(op_type, typename, 'equal_all')
    Cls.__name__ = cls_name
    globals()[cls_name] = Cls


98 99
np_equal = lambda _x, _y: np.array(np.array_equal(_x, _y))

100
for _type_name in {'float32', 'float64', 'int32', 'int64', 'bool'}:
W
wawltor 已提交
101 102 103
    create_test_not_equal_class('equal_all', _type_name, np_equal)
    create_test_equal_class('equal_all', _type_name, np_equal)
    create_test_dim1_class('equal_all', _type_name, np_equal)
104 105 106 107 108 109


class TestEqualReduceAPI(unittest.TestCase):
    def test_name(self):
        x = fluid.layers.assign(np.array([3, 4], dtype="int32"))
        y = fluid.layers.assign(np.array([3, 4], dtype="int32"))
W
wawltor 已提交
110
        out = paddle.equal_all(x, y, name='equal_res')
111 112
        assert 'equal_res' in out.name

113 114 115 116 117 118 119 120
    def test_dynamic_api(self):
        paddle.disable_static()
        x = paddle.ones(shape=[10, 10], dtype="int32")
        y = paddle.ones(shape=[10, 10], dtype="int32")
        out = paddle.equal_all(x, y)
        assert out.numpy()[0] == True
        paddle.enable_static()

121 122 123

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