test_pool2d_api.py 24.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2020 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
F
From00 已提交
16
import paddle
17
import numpy as np
F
From00 已提交
18
import paddle.fluid as fluid
19
import paddle.fluid.core as core
F
From00 已提交
20 21
from op_test import OpTest
from paddle.fluid.framework import _test_eager_guard
X
xiaoting 已提交
22
from paddle.nn.functional import avg_pool2d, max_pool2d
F
From00 已提交
23
from test_pool2d_op import adaptive_start_index, adaptive_end_index, pool2D_forward_naive, avg_pool2D_forward_naive, max_pool2D_forward_naive
24 25


C
cnn 已提交
26
class TestPool2D_API(unittest.TestCase):
27

28 29 30 31 32 33 34 35
    def setUp(self):
        np.random.seed(123)
        self.places = [fluid.CPUPlace()]
        if core.is_compiled_with_cuda():
            self.places.append(fluid.CUDAPlace(0))

    def check_avg_static_results(self, place):
        with fluid.program_guard(fluid.Program(), fluid.Program()):
36 37 38
            input = fluid.data(name="input",
                               shape=[2, 3, 32, 32],
                               dtype="float32")
39 40 41
            result = avg_pool2d(input, kernel_size=2, stride=2, padding=0)

            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
42 43 44 45 46
            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='avg')
47 48 49 50 51

            exe = fluid.Executor(place)
            fetches = exe.run(fluid.default_main_program(),
                              feed={"input": input_np},
                              fetch_list=[result])
52
            np.testing.assert_allclose(fetches[0], result_np, rtol=1e-05)
53 54 55 56 57 58 59

    def check_avg_dygraph_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
            result = avg_pool2d(input, kernel_size=2, stride=2, padding=0)

60 61 62 63 64
            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='avg')
65
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
66

67 68 69
            avg_pool2d_dg = paddle.nn.layer.AvgPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
70
            result = avg_pool2d_dg(input)
71
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
72

D
Double_V 已提交
73 74 75 76
    def check_avg_dygraph_padding_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
77 78 79 80 81 82 83 84 85 86 87 88
            result = avg_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=1,
                                ceil_mode=False)

            result_np = avg_pool2D_forward_naive(input_np,
                                                 ksize=[2, 2],
                                                 strides=[2, 2],
                                                 paddings=[1, 1],
                                                 ceil_mode=False,
                                                 exclusive=False)
89
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
90

91 92 93 94
            avg_pool2d_dg = paddle.nn.layer.AvgPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=1,
                                                      ceil_mode=False)
D
Double_V 已提交
95
            result = avg_pool2d_dg(input)
96
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
97 98 99 100 101

    def check_avg_dygraph_ceilmode_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
102 103 104 105 106 107 108 109 110 111 112
            result = avg_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=0,
                                ceil_mode=True)

            result_np = avg_pool2D_forward_naive(input_np,
                                                 ksize=[2, 2],
                                                 strides=[2, 2],
                                                 paddings=[0, 0],
                                                 ceil_mode=True)
113
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
114

115 116 117 118
            avg_pool2d_dg = paddle.nn.layer.AvgPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0,
                                                      ceil_mode=True)
D
Double_V 已提交
119
            result = avg_pool2d_dg(input)
120
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
121

122 123
    def check_max_static_results(self, place):
        with fluid.program_guard(fluid.Program(), fluid.Program()):
124 125 126
            input = fluid.data(name="input",
                               shape=[2, 3, 32, 32],
                               dtype="float32")
127 128 129
            result = max_pool2d(input, kernel_size=2, stride=2, padding=0)

            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
130 131 132 133 134
            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='max')
135 136 137 138 139

            exe = fluid.Executor(place)
            fetches = exe.run(fluid.default_main_program(),
                              feed={"input": input_np},
                              fetch_list=[result])
140
            np.testing.assert_allclose(fetches[0], result_np, rtol=1e-05)
141 142 143 144 145

    def check_max_dygraph_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
146 147 148 149 150 151 152 153 154 155 156
            result = max_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=0,
                                return_mask=False)

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='max')
157
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
158

159 160 161
            max_pool2d_dg = paddle.nn.layer.MaxPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
162
            result = max_pool2d_dg(input)
163
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
164

D
Double_V 已提交
165 166 167 168 169
    def check_max_dygraph_nhwc_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(
                np.transpose(input_np, [0, 2, 3, 1]))
170 171 172 173 174 175 176 177 178 179 180 181
            result = max_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=0,
                                return_mask=False,
                                data_format="NHWC")

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='max')
182 183 184 185
            np.testing.assert_allclose(np.transpose(result.numpy(),
                                                    [0, 3, 1, 2]),
                                       result_np,
                                       rtol=1e-05)
D
Double_V 已提交
186 187 188 189 190

    def check_max_dygraph_padding_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
191 192 193 194 195 196 197 198 199 200 201 202
            result = max_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=1,
                                ceil_mode=False)

            result_np = max_pool2D_forward_naive(input_np,
                                                 ksize=[2, 2],
                                                 strides=[2, 2],
                                                 paddings=[1, 1],
                                                 ceil_mode=False,
                                                 exclusive=False)
203
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
204

205 206 207 208
            max_pool2d_dg = paddle.nn.layer.MaxPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=1,
                                                      ceil_mode=False)
D
Double_V 已提交
209
            result = max_pool2d_dg(input)
210
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
211 212 213 214 215

    def check_max_dygraph_ceilmode_results(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
216 217 218 219 220 221 222 223 224 225 226
            result = max_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=0,
                                ceil_mode=True)

            result_np = max_pool2D_forward_naive(input_np,
                                                 ksize=[2, 2],
                                                 strides=[2, 2],
                                                 paddings=[0, 0],
                                                 ceil_mode=True)
227
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
228

229 230 231 232
            max_pool2d_dg = paddle.nn.layer.MaxPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0,
                                                      ceil_mode=True)
D
Double_V 已提交
233
            result = max_pool2d_dg(input)
234
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
D
Double_V 已提交
235

236 237 238 239
    def check_max_dygraph_stride_is_none(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
240 241 242 243 244 245 246 247 248 249 250 251
            result, indices = max_pool2d(input,
                                         kernel_size=2,
                                         stride=None,
                                         padding="SAME",
                                         return_mask=True)

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='max',
                                             padding_algorithm="SAME")
252
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
253

254 255 256
            max_pool2d_dg = paddle.nn.layer.MaxPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
257
            result = max_pool2d_dg(input)
258
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
259 260 261 262 263

    def check_avg_dygraph_stride_is_none(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
264 265 266 267 268 269 270 271 272 273 274
            result = avg_pool2d(input,
                                kernel_size=2,
                                stride=None,
                                padding="SAME")

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='avg',
                                             padding_algorithm="SAME")
275
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
276

277 278 279
            avg_pool2d_dg = paddle.nn.layer.AvgPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
280
            result = avg_pool2d_dg(input)
281
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
282 283 284 285 286 287

    def check_max_dygraph_padding(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
            padding = [[0, 0], [0, 0], [0, 0], [0, 0]]
288 289 290 291 292 293 294 295 296 297 298
            result = max_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=padding,
                                return_mask=False)

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='max')
299
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
300

301 302 303
            max_pool2d_dg = paddle.nn.layer.MaxPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
304
            result = max_pool2d_dg(input)
305
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
306 307 308 309 310 311

    def check_avg_divisor(self, place):
        with fluid.dygraph.guard(place):
            input_np = np.random.random([2, 3, 32, 32]).astype("float32")
            input = fluid.dygraph.to_variable(input_np)
            padding = [[0, 0], [0, 0], [0, 0], [0, 0]]
312 313 314 315 316 317 318 319 320 321 322
            result = avg_pool2d(input,
                                kernel_size=2,
                                stride=2,
                                padding=padding,
                                divisor_override=4)

            result_np = pool2D_forward_naive(input_np,
                                             ksize=[2, 2],
                                             strides=[2, 2],
                                             paddings=[0, 0],
                                             pool_type='avg')
323
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
324

325 326 327
            avg_pool2d_dg = paddle.nn.layer.AvgPool2D(kernel_size=2,
                                                      stride=2,
                                                      padding=0)
328
            result = avg_pool2d_dg(input)
329
            np.testing.assert_allclose(result.numpy(), result_np, rtol=1e-05)
330 331 332 333 334 335 336 337 338 339 340 341

    def test_pool2d(self):
        for place in self.places:

            self.check_max_dygraph_results(place)
            self.check_avg_dygraph_results(place)
            self.check_max_static_results(place)
            self.check_avg_static_results(place)
            self.check_max_dygraph_stride_is_none(place)
            self.check_avg_dygraph_stride_is_none(place)
            self.check_max_dygraph_padding(place)
            self.check_avg_divisor(place)
D
Double_V 已提交
342 343 344
            self.check_max_dygraph_padding_results(place)
            self.check_max_dygraph_ceilmode_results(place)
            self.check_max_dygraph_nhwc_results(place)
345

346
    def test_dygraph_api(self):
F
From00 已提交
347 348 349
        with _test_eager_guard():
            self.test_pool2d()

350

C
cnn 已提交
351
class TestPool2DError_API(unittest.TestCase):
352

353
    def test_error_api(self):
354

355 356 357 358 359 360
        def run1():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = [[0, 1], [0, 0], [0, 0], [0, 0]]
361 362 363 364
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding)
365 366 367 368 369 370 371 372 373

        self.assertRaises(ValueError, run1)

        def run2():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = [[0, 1], [0, 0], [0, 0], [0, 0]]
374 375 376 377 378
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    data_format='NHWC')
379 380 381 382 383 384 385 386 387

        self.assertRaises(ValueError, run2)

        def run3():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "padding"
388 389 390 391 392
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    data_format='NHWC')
393 394 395 396 397 398 399 400 401

        self.assertRaises(ValueError, run3)

        def run3_avg():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "padding"
402 403 404 405 406
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    data_format='NHWC')
407 408 409 410 411 412 413 414 415

        self.assertRaises(ValueError, run3_avg)

        def run4():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "VALID"
416 417 418 419 420 421
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    ceil_mode=True,
                                    data_format='NHWC')
422 423 424 425 426 427 428 429 430

        self.assertRaises(ValueError, run4)

        def run4_avg():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "VALID"
431 432 433 434 435 436
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    ceil_mode=True,
                                    data_format='NHWC')
437 438 439 440 441 442 443 444 445

        self.assertRaises(ValueError, run4_avg)

        def run5():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "padding"
446 447 448 449 450
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    data_format='NHWC')
451 452 453 454 455 456 457 458 459

        self.assertRaises(ValueError, run5)

        def run6():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "VALID"
460 461 462 463 464 465
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    ceil_mode=True,
                                    data_format='NHWC')
466 467 468 469 470 471 472 473 474

        self.assertRaises(ValueError, run6)

        def run7():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "VALID"
475 476 477 478 479 480
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    ceil_mode=False,
                                    data_format='NNNN')
481 482 483 484 485 486 487 488 489

        self.assertRaises(ValueError, run7)

        def run8():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
                padding = "VALID"
490 491 492 493 494 495
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=padding,
                                    ceil_mode=False,
                                    data_format='NNNN')
496 497 498

        self.assertRaises(ValueError, run8)

D
Double_V 已提交
499 500 501 502 503
        def run9():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
504 505 506 507 508 509 510
                res_pd = max_pool2d(input_pd,
                                    kernel_size=2,
                                    stride=2,
                                    padding=0,
                                    ceil_mode=False,
                                    data_format='NHWC',
                                    return_mask=True)
D
Double_V 已提交
511 512 513

        self.assertRaises(ValueError, run9)

D
Double_V 已提交
514 515 516 517 518
        def run_kernel_out_of_range():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
519 520 521 522 523 524
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=[-1, 2],
                                    stride=2,
                                    padding=0,
                                    ceil_mode=False,
                                    data_format='NHWC')
D
Double_V 已提交
525 526 527 528 529 530 531 532

        self.assertRaises(ValueError, run_kernel_out_of_range)

        def run_stride_out_of_range():
            with fluid.dygraph.guard():
                input_np = np.random.uniform(-1, 1,
                                             [2, 3, 32, 32]).astype(np.float32)
                input_pd = fluid.dygraph.to_variable(input_np)
533 534 535 536 537 538
                res_pd = avg_pool2d(input_pd,
                                    kernel_size=3,
                                    stride=[0, 2],
                                    padding=0,
                                    ceil_mode=False,
                                    data_format='NHWC')
D
Double_V 已提交
539 540 541

        self.assertRaises(ValueError, run_stride_out_of_range)

542
    def test_dygraph_api(self):
F
From00 已提交
543 544 545
        with _test_eager_guard():
            self.test_error_api()

546 547 548

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