test_put_along_axis_op.py 6.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#   Copyright (c) 2021 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
import copy
from op_test import OpTest
import paddle
from paddle.framework import core

paddle.enable_static()


class TestPutAlongAxisOp(OpTest):
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    def setUp(self):
        self.init_data()
        self.reduce_op = "assign"
        self.dtype = 'float64'
        self.op_type = "put_along_axis"
        self.xnp = np.random.random(self.x_shape).astype(self.x_type)
        # numpy put_along_axis is an inplace opearion.
        self.xnp_result = copy.deepcopy(self.xnp)
        np.put_along_axis(self.xnp_result, self.index, self.value, self.axis)
        self.target = self.xnp_result
        broadcast_shape_list = list(self.x_shape)
        broadcast_shape_list[self.axis] = 1
        self.braodcast_shape = tuple(broadcast_shape_list)
        self.index_broadcast = np.broadcast_to(self.index, self.braodcast_shape)
        self.value_broadcast = np.broadcast_to(self.value, self.braodcast_shape)
        self.inputs = {
            'Input': self.xnp,
            'Index': self.index_broadcast,
            'Value': self.value_broadcast
        }
        self.attrs = {'Axis': self.axis, 'Reduce': self.reduce_op}
        self.outputs = {'Result': self.target}

    def test_check_output(self):
        self.check_output()

    def test_check_grad(self):
        self.check_grad(["Input", "Value"], "Result")

    def init_data(self):
        self.x_type = "float64"
        self.x_shape = (10, 10, 10)
        self.value_type = "float64"
        self.value = np.array([99]).astype(self.value_type)
        self.index_type = "int32"
        self.index = np.array([[[0]]]).astype(self.index_type)
        self.axis = 1
        self.axis_type = "int64"


class TestPutAlongAxisAPI(unittest.TestCase):
68

69 70 71 72 73 74 75 76 77 78 79 80 81 82
    def setUp(self):
        np.random.seed(0)
        self.shape = [1, 3]
        self.index_shape = [1, 1]
        self.index_np = np.array([[0]]).astype('int64')
        self.x_np = np.random.random(self.shape).astype(np.float32)
        self.place = [paddle.CPUPlace()]
        self.axis = 0
        self.value_np = 99.0
        self.value_shape = [1]
        self.x_feed = copy.deepcopy(self.x_np)
        if core.is_compiled_with_cuda():
            self.place.append(paddle.CUDAPlace(0))

83
    def test_api_static(self):
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        paddle.enable_static()

        def run(place):
            with paddle.static.program_guard(paddle.static.Program()):
                x = paddle.fluid.data('X', self.shape)
                index = paddle.fluid.data('Index', self.index_shape, "int64")
                value = paddle.fluid.data('Value', self.value_shape)
                out = paddle.put_along_axis(x, index, value, self.axis)
                exe = paddle.static.Executor(self.place[0])
                res = exe.run(feed={
                    'X': self.x_feed,
                    'Value': self.value_np,
                    'Index': self.index_np
                },
                              fetch_list=[out])

            np.put_along_axis(self.x_np, self.index_np, self.value_np,
                              self.axis)
            # numpy put_along_axis is an inplace opearion.
            out_ref = self.x_np

            for out in res:
106
                np.testing.assert_allclose(out, out_ref, rtol=0.001)
107 108 109 110

        for place in self.place:
            run(place)

111
    def test_api_dygraph(self):
112

113 114 115 116 117 118 119 120 121 122 123
        def run(place):
            paddle.disable_static(place)
            x_tensor = paddle.to_tensor(self.x_np)
            index_tensor = paddle.to_tensor(self.index_np)
            value_tensor = paddle.to_tensor(self.value_np)
            out = paddle.put_along_axis(x_tensor, index_tensor, value_tensor,
                                        self.axis)
            np.array(
                np.put_along_axis(self.x_np, self.index_np, self.value_np,
                                  self.axis))
            out_ref = self.x_np
124
            np.testing.assert_allclose(out.numpy(), out_ref, rtol=0.001)
125 126 127 128 129 130 131 132 133 134 135 136

            # for ci coverage, numpy put_along_axis did not support argument of 'reduce'
            paddle.put_along_axis(x_tensor, index_tensor, value_tensor,
                                  self.axis, 'mul')
            paddle.put_along_axis(x_tensor, index_tensor, value_tensor,
                                  self.axis, 'add')

            paddle.enable_static()

        for place in self.place:
            run(place)

137
    def test_inplace_dygraph(self):
138

139 140 141 142 143 144 145 146 147 148 149 150 151
        def run(place):
            paddle.disable_static(place)
            x_tensor = paddle.to_tensor(self.x_np)
            index_tensor = paddle.to_tensor(self.index_np)
            value_tensor = paddle.to_tensor(self.value_np)

            x_tensor.put_along_axis_(index_tensor, value_tensor, self.axis)

            np.array(
                np.put_along_axis(self.x_np, self.index_np, self.value_np,
                                  self.axis))
            out_ref = self.x_np

152
            np.testing.assert_allclose(x_tensor.numpy(), out_ref, rtol=0.001)
153 154 155 156 157 158
            paddle.enable_static()

        for place in self.place:
            run(place)


159
class TestPutAlongAxisAPICase2(TestPutAlongAxisAPI):
160

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    def setUp(self):
        np.random.seed(0)
        self.shape = [2, 2]
        self.index_shape = [2, 2]
        self.index_np = np.array([[0, 0], [1, 0]]).astype('int64')
        self.x_np = np.random.random(self.shape).astype(np.float32)
        self.place = [paddle.CPUPlace()]
        self.axis = 0
        self.value_np = 99.0
        self.value_shape = [1]
        self.x_feed = copy.deepcopy(self.x_np)
        if core.is_compiled_with_cuda():
            self.place.append(paddle.CUDAPlace(0))


class TestPutAlongAxisAPICase3(TestPutAlongAxisAPI):
177

178 179 180 181
    def setUp(self):
        np.random.seed(0)
        self.shape = [2, 2]
        self.index_shape = [4, 2]
182 183
        self.index_np = np.array([[0, 0], [1, 0], [0, 0], [1,
                                                           0]]).astype('int64')
184 185 186 187 188 189 190 191 192 193 194 195 196
        self.x_np = np.random.random(self.shape).astype(np.float32)
        self.place = [paddle.CPUPlace()]
        self.axis = 0
        self.value_np = 99.0
        self.value_shape = [1]
        self.x_feed = copy.deepcopy(self.x_np)
        if core.is_compiled_with_cuda():
            self.place.append(paddle.CUDAPlace(0))

    def test_inplace_dygraph(self):
        pass


197 198 199
if __name__ == "__main__":
    paddle.enable_static()
    unittest.main()