test_pool2d_op.py 11.6 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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
from __future__ import print_function
16
from __future__ import division
17

C
chengduoZH 已提交
18 19
import unittest
import numpy as np
20

21
import paddle.fluid.core as core
22
from op_test import OpTest
C
chengduoZH 已提交
23 24


25 26 27 28 29 30 31 32
def adaptive_start_index(index, input_size, output_size):
    return int(np.floor(index * input_size / output_size))


def adaptive_end_index(index, input_size, output_size):
    return int(np.ceil((index + 1) * input_size / output_size))


33 34 35 36 37
def max_pool2D_forward_naive(x,
                             ksize,
                             strides,
                             paddings,
                             global_pool=0,
38
                             ceil_mode=False,
39 40
                             exclusive=True,
                             adaptive=False):
C
chengduoZH 已提交
41
    N, C, H, W = x.shape
C
chengduoZH 已提交
42 43
    if global_pool == 1:
        ksize = [H, W]
44 45 46 47 48 49 50 51 52
    if adaptive:
        H_out, W_out = ksize
    else:
        H_out = (H - ksize[0] + 2 * paddings[0] + strides[0] - 1
                 ) // strides[0] + 1 if ceil_mode else (
                     H - ksize[0] + 2 * paddings[0]) // strides[0] + 1
        W_out = (W - ksize[1] + 2 * paddings[1] + strides[1] - 1
                 ) // strides[1] + 1 if ceil_mode else (
                     W - ksize[1] + 2 * paddings[1]) // strides[1] + 1
C
chengduoZH 已提交
53
    out = np.zeros((N, C, H_out, W_out))
54 55
    for i in range(H_out):
        for j in range(W_out):
56 57 58 59 60 61 62 63 64 65
            if adaptive:
                r_start = adaptive_start_index(i, H, ksize[0])
                r_end = adaptive_end_index(i, H, ksize[0])
                c_start = adaptive_start_index(j, W, ksize[1])
                c_end = adaptive_end_index(j, W, ksize[1])
            else:
                r_start = np.max((i * strides[0] - paddings[0], 0))
                r_end = np.min((i * strides[0] + ksize[0] - paddings[0], H))
                c_start = np.max((j * strides[1] - paddings[1], 0))
                c_end = np.min((j * strides[1] + ksize[1] - paddings[1], W))
C
chengduoZH 已提交
66 67 68 69 70 71
            x_masked = x[:, :, r_start:r_end, c_start:c_end]

            out[:, :, i, j] = np.max(x_masked, axis=(2, 3))
    return out


72 73 74 75 76
def avg_pool2D_forward_naive(x,
                             ksize,
                             strides,
                             paddings,
                             global_pool=0,
77
                             ceil_mode=False,
78 79
                             exclusive=True,
                             adaptive=False):
C
chengduoZH 已提交
80
    N, C, H, W = x.shape
C
chengduoZH 已提交
81 82
    if global_pool == 1:
        ksize = [H, W]
83 84 85 86 87 88 89 90 91
    if adaptive:
        H_out, W_out = ksize
    else:
        H_out = (H - ksize[0] + 2 * paddings[0] + strides[0] - 1
                 ) // strides[0] + 1 if ceil_mode else (
                     H - ksize[0] + 2 * paddings[0]) // strides[0] + 1
        W_out = (W - ksize[1] + 2 * paddings[1] + strides[1] - 1
                 ) // strides[1] + 1 if ceil_mode else (
                     W - ksize[1] + 2 * paddings[1]) // strides[1] + 1
C
chengduoZH 已提交
92
    out = np.zeros((N, C, H_out, W_out))
93 94
    for i in range(H_out):
        for j in range(W_out):
95 96 97 98 99 100 101 102 103 104
            if adaptive:
                r_start = adaptive_start_index(i, H, ksize[0])
                r_end = adaptive_end_index(i, H, ksize[0])
                c_start = adaptive_start_index(j, W, ksize[1])
                c_end = adaptive_end_index(j, W, ksize[1])
            else:
                r_start = np.max((i * strides[0] - paddings[0], 0))
                r_end = np.min((i * strides[0] + ksize[0] - paddings[0], H))
                c_start = np.max((j * strides[1] - paddings[1], 0))
                c_end = np.min((j * strides[1] + ksize[1] - paddings[1], W))
C
chengduoZH 已提交
105 106
            x_masked = x[:, :, r_start:r_end, c_start:c_end]

107 108
            field_size = ((r_end - r_start) * (c_end - c_start)) \
                        if (exclusive or adaptive) else (ksize[0] * ksize[1])
109
            out[:, :, i, j] = np.sum(x_masked, axis=(2, 3)) / field_size
C
chengduoZH 已提交
110 111 112
    return out


C
chengduo 已提交
113
class TestPool2D_Op(OpTest):
C
chengduoZH 已提交
114
    def setUp(self):
K
Kexin Zhao 已提交
115
        self.op_type = "pool2d"
116
        self.use_cudnn = False
117
        self.use_mkldnn = False
X
xiaolil1 已提交
118
        self.init_data_type()
C
chengduoZH 已提交
119
        self.init_test_case()
C
chengduoZH 已提交
120
        self.init_global_pool()
K
Kexin Zhao 已提交
121
        self.init_kernel_type()
C
chengduoZH 已提交
122
        self.init_pool_type()
123
        self.init_ceil_mode()
124
        self.init_exclusive()
125
        self.init_adaptive()
C
fix bug  
chengduoZH 已提交
126 127
        if self.global_pool:
            self.paddings = [0 for _ in range(len(self.paddings))]
K
Kexin Zhao 已提交
128
        input = np.random.random(self.shape).astype(self.dtype)
129 130
        output = self.pool2D_forward_naive(
            input, self.ksize, self.strides, self.paddings, self.global_pool,
131
            self.ceil_mode, self.exclusive, self.adaptive).astype(self.dtype)
K
Kexin Zhao 已提交
132
        self.inputs = {'X': OpTest.np_dtype_to_fluid_dtype(input)}
C
chengduoZH 已提交
133 134 135 136 137

        self.attrs = {
            'strides': self.strides,
            'paddings': self.paddings,
            'ksize': self.ksize,
C
chengduoZH 已提交
138 139
            'pooling_type': self.pool_type,
            'global_pooling': self.global_pool,
140
            'use_cudnn': self.use_cudnn,
141
            'use_mkldnn': self.use_mkldnn,
142
            'ceil_mode': self.ceil_mode,
143 144
            'data_format':
            'AnyLayout',  # TODO(dzhwinter) : should be fix latter
145 146
            'exclusive': self.exclusive,
            'adaptive': self.adaptive
C
chengduoZH 已提交
147 148
        }

K
Kexin Zhao 已提交
149
        self.outputs = {'Out': output}
C
chengduoZH 已提交
150

151
    def has_cudnn(self):
152 153
        return core.is_compiled_with_cuda() and self.use_cudnn

C
chengduoZH 已提交
154
    def test_check_output(self):
155
        if self.has_cudnn():
156 157 158 159
            place = core.CUDAPlace(0)
            self.check_output_with_place(place, atol=1e-5)
        else:
            self.check_output()
C
chengduoZH 已提交
160 161

    def test_check_grad(self):
K
Kexin Zhao 已提交
162 163
        if self.dtype == np.float16:
            return
164
        if self.has_cudnn() and self.pool_type != "max":
165 166 167 168
            place = core.CUDAPlace(0)
            self.check_grad_with_place(
                place, set(['X']), 'Out', max_relative_error=0.07)
        elif self.pool_type != "max":
169
            self.check_grad(set(['X']), 'Out', max_relative_error=0.07)
C
chengduoZH 已提交
170

C
chengduoZH 已提交
171
    def init_test_case(self):
C
chengduoZH 已提交
172 173 174 175 176
        self.shape = [2, 3, 5, 5]
        self.ksize = [3, 3]
        self.strides = [1, 1]
        self.paddings = [0, 0]

K
Kexin Zhao 已提交
177 178
    def init_kernel_type(self):
        pass
C
chengduoZH 已提交
179

X
xiaolil1 已提交
180 181 182
    def init_data_type(self):
        self.dtype = np.float32

C
chengduoZH 已提交
183 184
    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
185 186 187 188
        self.pool2D_forward_naive = avg_pool2D_forward_naive

    def init_global_pool(self):
        self.global_pool = True
C
chengduoZH 已提交
189

190 191 192
    def init_ceil_mode(self):
        self.ceil_mode = False

193 194 195
    def init_exclusive(self):
        self.exclusive = True

196 197 198
    def init_adaptive(self):
        self.adaptive = False

C
chengduoZH 已提交
199

C
chengduo 已提交
200
class TestCase1(TestPool2D_Op):
C
chengduoZH 已提交
201
    def init_test_case(self):
C
chengduoZH 已提交
202
        self.shape = [2, 3, 7, 7]
C
chengduoZH 已提交
203 204
        self.ksize = [3, 3]
        self.strides = [1, 1]
C
chengduoZH 已提交
205
        self.paddings = [0, 0]
C
chengduoZH 已提交
206

C
chengduoZH 已提交
207 208
    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
209 210 211 212
        self.pool2D_forward_naive = avg_pool2D_forward_naive

    def init_global_pool(self):
        self.global_pool = False
C
chengduoZH 已提交
213

C
chengduoZH 已提交
214

C
chengduo 已提交
215
class TestCase2(TestPool2D_Op):
C
chengduoZH 已提交
216
    def init_test_case(self):
C
chengduoZH 已提交
217
        self.shape = [2, 3, 7, 7]
C
chengduoZH 已提交
218 219 220 221
        self.ksize = [3, 3]
        self.strides = [1, 1]
        self.paddings = [1, 1]

C
chengduoZH 已提交
222 223
    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
224
        self.pool2D_forward_naive = avg_pool2D_forward_naive
C
chengduoZH 已提交
225

C
chengduoZH 已提交
226 227
    def init_global_pool(self):
        self.global_pool = False
C
chengduoZH 已提交
228

C
chengduoZH 已提交
229

C
chengduo 已提交
230
class TestCase3(TestPool2D_Op):
C
chengduoZH 已提交
231 232
    def init_pool_type(self):
        self.pool_type = "max"
C
chengduoZH 已提交
233
        self.pool2D_forward_naive = max_pool2D_forward_naive
C
chengduoZH 已提交
234

C
chengduoZH 已提交
235 236

class TestCase4(TestCase1):
C
chengduoZH 已提交
237 238 239 240
    def init_pool_type(self):
        self.pool_type = "max"
        self.pool2D_forward_naive = max_pool2D_forward_naive

C
chengduoZH 已提交
241 242

class TestCase5(TestCase2):
C
chengduoZH 已提交
243 244
    def init_pool_type(self):
        self.pool_type = "max"
C
chengduoZH 已提交
245
        self.pool2D_forward_naive = max_pool2D_forward_naive
C
chengduoZH 已提交
246 247


C
chengduo 已提交
248
#--------------------test pool2d cudnn--------------------
C
chengduoZH 已提交
249 250


C
chengduo 已提交
251 252 253 254 255 256
def create_test_cudnn_class(parent):
    @unittest.skipIf(not core.is_compiled_with_cuda(),
                     "core is not compiled with CUDA")
    class TestCUDNNCase(parent):
        def init_kernel_type(self):
            self.use_cudnn = True
K
Kexin Zhao 已提交
257

C
chengduo 已提交
258 259 260
    cls_name = "{0}_{1}".format(parent.__name__, "CUDNNOp")
    TestCUDNNCase.__name__ = cls_name
    globals()[cls_name] = TestCUDNNCase
K
Kexin Zhao 已提交
261 262


C
chengduo 已提交
263 264 265 266 267 268
create_test_cudnn_class(TestPool2D_Op)
create_test_cudnn_class(TestCase1)
create_test_cudnn_class(TestCase2)
create_test_cudnn_class(TestCase3)
create_test_cudnn_class(TestCase4)
create_test_cudnn_class(TestCase5)
C
chengduoZH 已提交
269

C
chengduo 已提交
270
#--------------------test pool2d cudnn_fp16--------------------
C
chengduoZH 已提交
271

K
Kexin Zhao 已提交
272

C
chengduo 已提交
273 274 275 276 277 278 279
def create_test_cudnn_fp16_class(parent, check_grad=True):
    @unittest.skipIf(not core.is_compiled_with_cuda(),
                     "core is not compiled with CUDA")
    class TestCUDNNFp16Case(parent):
        def init_kernel_type(self):
            self.use_cudnn = True
            self.dtype = np.float16
K
Kexin Zhao 已提交
280

C
chengduo 已提交
281 282 283 284 285
        def test_check_output(self):
            if core.is_compiled_with_cuda():
                place = core.CUDAPlace(0)
                if core.is_float16_supported(place):
                    self.check_output_with_place(place, atol=1e-3)
K
Kexin Zhao 已提交
286

C
chengduo 已提交
287
        def test_check_grad(self):
K
Kexin Zhao 已提交
288
            place = core.CUDAPlace(0)
C
chengduo 已提交
289 290 291 292
            if core.is_float16_supported(
                    place) and self.pool_type != "max" and check_grad:
                self.check_grad_with_place(
                    place, set(['X']), 'Out', max_relative_error=0.07)
K
Kexin Zhao 已提交
293

C
chengduo 已提交
294 295 296
    cls_name = "{0}_{1}".format(parent.__name__, "CUDNNFp16Op")
    TestCUDNNFp16Case.__name__ = cls_name
    globals()[cls_name] = TestCUDNNFp16Case
K
Kexin Zhao 已提交
297

C
chengduoZH 已提交
298

C
chengduo 已提交
299 300 301 302 303 304
create_test_cudnn_fp16_class(TestPool2D_Op)
create_test_cudnn_fp16_class(TestCase1, check_grad=False)
create_test_cudnn_fp16_class(TestCase2)
create_test_cudnn_fp16_class(TestCase3)
create_test_cudnn_fp16_class(TestCase4)
create_test_cudnn_fp16_class(TestCase5)
C
chengduoZH 已提交
305

C
chengduo 已提交
306
#--------------------test pool2d use ceil mode--------------------
K
Kexin Zhao 已提交
307 308


C
chengduo 已提交
309 310 311 312 313 314
def create_test_cudnn_use_ceil_class(parent):
    @unittest.skipIf(not core.is_compiled_with_cuda(),
                     "core is not compiled with CUDA")
    class TestPool2DUseCeilCase(parent):
        def init_kernel_type(self):
            self.use_cudnn = True
K
Kexin Zhao 已提交
315

C
chengduo 已提交
316 317
        def init_ceil_mode(self):
            self.ceil_mode = True
C
chengduoZH 已提交
318

C
chengduo 已提交
319 320 321
    cls_name = "{0}_{1}".format(parent.__name__, "CUDNNOpCeilMode")
    TestPool2DUseCeilCase.__name__ = cls_name
    globals()[cls_name] = TestPool2DUseCeilCase
K
Kexin Zhao 已提交
322 323


C
chengduo 已提交
324 325
create_test_cudnn_use_ceil_class(TestPool2D_Op)
create_test_cudnn_use_ceil_class(TestCase1)
K
Kexin Zhao 已提交
326

327

C
chengduo 已提交
328 329 330 331
def create_test_use_ceil_class(parent):
    class TestPool2DUseCeilCase(parent):
        def init_ceil_mode(self):
            self.ceil_mode = True
332

C
chengduo 已提交
333 334 335
    cls_name = "{0}_{1}".format(parent.__name__, "CeilModeCast")
    TestPool2DUseCeilCase.__name__ = cls_name
    globals()[cls_name] = TestPool2DUseCeilCase
336 337


C
chengduo 已提交
338 339
create_test_use_ceil_class(TestCase1)
create_test_use_ceil_class(TestCase2)
340

341

342 343 344 345
class TestAvgInclude(TestCase2):
    def init_exclusive(self):
        self.exclusive = False

346

C
chengduo 已提交
347 348 349 350
class TestCUDNNAvgInclude(TestCase2):
    def init_kernel_type(self):
        self.use_cudnn = True

351 352 353
    def init_exclusive(self):
        self.exclusive = False

354

355 356 357 358 359
class TestAvgPoolAdaptive(TestCase1):
    def init_adaptive(self):
        self.adaptive = True


C
chengduoZH 已提交
360 361
if __name__ == '__main__':
    unittest.main()