test_where_index.py 3.5 KB
Newer Older
Z
zhoukunsheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#   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.

import unittest
import numpy as np
from op_test import OpTest
import paddle.fluid.core as core
from paddle.fluid.op import Operator
20 21
import paddle.fluid as fluid
from paddle.fluid import Program, program_guard
Z
zhoukunsheng 已提交
22 23


24
class TestWhereIndexOp(OpTest):
25

Z
zhoukunsheng 已提交
26
    def setUp(self):
27
        self.op_type = "where_index"
Z
zhoukunsheng 已提交
28 29 30 31 32 33
        self.init_config()

    def test_check_output(self):
        self.check_output()

    def init_config(self):
34 35 36
        self.inputs = {
            'Condition': np.array([True, False, True]),
        }
Z
zhoukunsheng 已提交
37 38 39 40 41

        self.outputs = {'Out': np.array([[0], [2]], dtype='int64')}


class TestAllFalse(unittest.TestCase):
42

Z
zhoukunsheng 已提交
43
    def setUp(self):
44
        self.op_type = "where_index"
Z
zhoukunsheng 已提交
45 46 47 48 49 50 51 52 53 54
        self.init_config()

    def check_with_place(self, place):
        scope = core.Scope()
        condition = scope.var('Condition').get_tensor()
        condition.set(self.cond_data, place)

        out = scope.var("Out").get_tensor()
        out.set(np.full(self.shape, 0).astype('int64'), place)

55
        op = Operator("where_index", Condition="Condition", Out="Out")
Z
zhoukunsheng 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
        op.run(scope, place)

        out_array = np.array(out)
        self.assertTrue((out_array == self.out_data).all())

    def init_config(self):
        self.cond_data = np.array([False, False, False])
        self.shape = (3, 1)
        self.out_data = np.array([], dtype='int64')

    def test_all_false(self):
        self.check_with_place(core.CPUPlace())

        if core.is_compiled_with_cuda():
            self.check_with_place(core.CUDAPlace(0))


73
class TestRank2(TestWhereIndexOp):
74

Z
zhoukunsheng 已提交
75
    def init_config(self):
76 77 78
        self.inputs = {
            'Condition': np.array([[True, False], [False, True]]),
        }
Z
zhoukunsheng 已提交
79 80 81 82

        self.outputs = {'Out': np.array([[0, 0], [1, 1]], dtype='int64')}


83
class TestRank3(TestWhereIndexOp):
84

Z
zhoukunsheng 已提交
85 86
    def init_config(self):
        self.inputs = {
87 88 89 90
            'Condition':
            np.array([[[True, False], [False, True]],
                      [[False, True], [True, False]],
                      [[False, False], [False, True]]]),
Z
zhoukunsheng 已提交
91 92 93
        }

        self.outputs = {
94 95 96
            'Out':
            np.array([[0, 0, 0], [0, 1, 1], [1, 0, 1], [1, 1, 0], [2, 1, 1]],
                     dtype='int64')
Z
zhoukunsheng 已提交
97 98 99
        }


100
class TestWhereOpError(unittest.TestCase):
101

102 103 104 105 106 107 108 109 110 111 112
    def test_api(self):
        with program_guard(Program(), Program()):
            cond = fluid.layers.data(name='cond', shape=[4], dtype='bool')
            result = fluid.layers.where(cond)

            exe = fluid.Executor(fluid.CPUPlace())
            exe.run(fluid.default_startup_program())
            cond_i = np.array([True, False, False, False]).astype("bool")
            out = exe.run(fluid.default_main_program(), feed={'cond': cond_i})


113
class TestWhereRaiseError(unittest.TestCase):
114

115
    def test_errors(self):
116

117 118 119 120 121 122
        def test_type():
            fluid.layers.where([10])

        self.assertRaises(TypeError, test_type)


Z
zhoukunsheng 已提交
123 124
if __name__ == "__main__":
    unittest.main()