test_diff_op.py 7.5 KB
Newer Older
A
andyjpaddle 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   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
16

A
andyjpaddle 已提交
17
import numpy as np
18

A
andyjpaddle 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
import paddle
import paddle.fluid as fluid
import paddle.fluid.core as core


class TestDiffOp(unittest.TestCase):
    def set_args(self):
        self.input = np.array([1, 4, 5, 2]).astype('float32')
        self.n = 1
        self.axis = -1
        self.prepend = None
        self.append = None

    def get_output(self):
        if self.prepend is not None and self.append is not None:
34 35 36 37 38 39 40
            self.output = np.diff(
                self.input,
                n=self.n,
                axis=self.axis,
                prepend=self.prepend,
                append=self.append,
            )
A
andyjpaddle 已提交
41
        elif self.prepend is not None:
42 43 44
            self.output = np.diff(
                self.input, n=self.n, axis=self.axis, prepend=self.prepend
            )
A
andyjpaddle 已提交
45
        elif self.append is not None:
46 47 48
            self.output = np.diff(
                self.input, n=self.n, axis=self.axis, append=self.append
            )
A
andyjpaddle 已提交
49 50 51 52 53 54 55 56 57 58
        else:
            self.output = np.diff(self.input, n=self.n, axis=self.axis)

    def setUp(self):
        self.set_args()
        self.get_output()
        self.places = [paddle.CPUPlace()]
        if core.is_compiled_with_cuda():
            self.places.append(paddle.CUDAPlace(0))

59
    def func_dygraph(self):
A
andyjpaddle 已提交
60
        for place in self.places:
61
            paddle.disable_static()
A
andyjpaddle 已提交
62 63 64 65 66
            x = paddle.to_tensor(self.input, place=place)
            if self.prepend is not None:
                self.prepend = paddle.to_tensor(self.prepend, place=place)
            if self.append is not None:
                self.append = paddle.to_tensor(self.append, place=place)
67 68 69 70 71 72 73
            out = paddle.diff(
                x,
                n=self.n,
                axis=self.axis,
                prepend=self.prepend,
                append=self.append,
            )
A
andyjpaddle 已提交
74 75
            self.assertTrue((out.numpy() == self.output).all(), True)

76 77 78 79
    def test_dygraph(self):
        self.setUp()
        self.func_dygraph()

A
andyjpaddle 已提交
80 81 82 83 84 85 86
    def test_static(self):
        paddle.enable_static()
        places = [fluid.CPUPlace()]
        if core.is_compiled_with_cuda():
            places.append(fluid.CUDAPlace(0))
        for place in places:
            with fluid.program_guard(fluid.Program(), fluid.Program()):
87 88 89
                x = paddle.fluid.data(
                    name="input", shape=self.input.shape, dtype=self.input.dtype
                )
A
andyjpaddle 已提交
90 91 92 93 94
                has_pend = False
                prepend = None
                append = None
                if self.prepend is not None:
                    has_pend = True
95 96 97 98 99
                    prepend = paddle.fluid.data(
                        name="prepend",
                        shape=self.prepend.shape,
                        dtype=self.prepend.dtype,
                    )
A
andyjpaddle 已提交
100 101
                if self.append is not None:
                    has_pend = True
102 103 104 105 106
                    append = paddle.fluid.data(
                        name="append",
                        shape=self.append.shape,
                        dtype=self.append.dtype,
                    )
A
andyjpaddle 已提交
107 108

                exe = fluid.Executor(place)
109 110 111 112 113 114 115 116 117 118 119 120
                out = paddle.diff(
                    x, n=self.n, axis=self.axis, prepend=prepend, append=append
                )
                fetches = exe.run(
                    fluid.default_main_program(),
                    feed={
                        "input": self.input,
                        "prepend": self.prepend,
                        "append": self.append,
                    },
                    fetch_list=[out],
                )
A
andyjpaddle 已提交
121 122
                self.assertTrue((fetches[0] == self.output).all(), True)

123
    def func_grad(self):
A
andyjpaddle 已提交
124 125 126 127 128 129
        for place in self.places:
            x = paddle.to_tensor(self.input, place=place, stop_gradient=False)
            if self.prepend is not None:
                self.prepend = paddle.to_tensor(self.prepend, place=place)
            if self.append is not None:
                self.append = paddle.to_tensor(self.append, place=place)
130 131 132 133 134 135 136
            out = paddle.diff(
                x,
                n=self.n,
                axis=self.axis,
                prepend=self.prepend,
                append=self.append,
            )
A
andyjpaddle 已提交
137 138 139 140 141 142
            try:
                out.backward()
                x_grad = x.grad
            except:
                raise RuntimeError("Check Diff Gradient Failed")

143 144 145 146
    def test_grad(self):
        self.setUp()
        self.func_grad()

A
andyjpaddle 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

class TestDiffOpAxis(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = 0
        self.prepend = None
        self.append = None


class TestDiffOpNDim(TestDiffOp):
    def set_args(self):
        self.input = np.random.rand(10, 10).astype('float32')
        self.n = 1
        self.axis = -1
        self.prepend = None
        self.append = None


class TestDiffOpBool(TestDiffOp):
    def set_args(self):
        self.input = np.array([0, 1, 1, 0, 1, 0]).astype('bool')
        self.n = 1
        self.axis = -1
        self.prepend = None
        self.append = None


class TestDiffOpPrepend(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = -1
        self.prepend = np.array([[2, 3, 4], [1, 3, 5]]).astype('float32')
        self.append = None


class TestDiffOpPrependAxis(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = 0
189 190 191
        self.prepend = np.array(
            [[0, 2, 3, 4], [1, 3, 5, 7], [2, 5, 8, 0]]
        ).astype('float32')
A
andyjpaddle 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
        self.append = None


class TestDiffOpAppend(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = -1
        self.prepend = None
        self.append = np.array([[2, 3, 4], [1, 3, 5]]).astype('float32')


class TestDiffOpAppendAxis(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = 0
        self.prepend = None
        self.append = np.array([[2, 3, 4, 1]]).astype('float32')


class TestDiffOpPreAppend(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = -1
        self.prepend = np.array([[0, 4], [5, 9]]).astype('float32')
        self.append = np.array([[2, 3, 4], [1, 3, 5]]).astype('float32')


class TestDiffOpPreAppendAxis(TestDiffOp):
    def set_args(self):
        self.input = np.array([[1, 4, 5, 2], [1, 5, 4, 2]]).astype('float32')
        self.n = 1
        self.axis = 0
        self.prepend = np.array([[0, 4, 5, 9], [5, 9, 2, 3]]).astype('float32')
        self.append = np.array([[2, 3, 4, 7], [1, 3, 5, 6]]).astype('float32')


if __name__ == '__main__':
H
hong 已提交
232
    paddle.enable_static()
A
andyjpaddle 已提交
233
    unittest.main()