test_pool2d_op.py 5.9 KB
Newer Older
C
chengduoZH 已提交
1 2
import unittest
import numpy as np
3 4

import paddle.v2.fluid.core as core
C
chengduoZH 已提交
5 6 7
from op_test import OpTest


C
chengduoZH 已提交
8
def max_pool2D_forward_naive(x, ksize, strides, paddings, global_pool=0):
C
chengduoZH 已提交
9
    N, C, H, W = x.shape
C
chengduoZH 已提交
10 11
    if global_pool == 1:
        ksize = [H, W]
C
chengduoZH 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
    H_out = (H - ksize[0] + 2 * paddings[0]) / strides[0] + 1
    W_out = (W - ksize[1] + 2 * paddings[1]) / strides[1] + 1
    out = np.zeros((N, C, H_out, W_out))
    for i in xrange(H_out):
        for j in xrange(W_out):
            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))
            x_masked = x[:, :, r_start:r_end, c_start:c_end]

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


C
chengduoZH 已提交
27
def avg_pool2D_forward_naive(x, ksize, strides, paddings, global_pool=0):
C
chengduoZH 已提交
28
    N, C, H, W = x.shape
C
chengduoZH 已提交
29 30
    if global_pool == 1:
        ksize = [H, W]
C
chengduoZH 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    H_out = (H - ksize[0] + 2 * paddings[0]) / strides[0] + 1
    W_out = (W - ksize[1] + 2 * paddings[1]) / strides[1] + 1
    out = np.zeros((N, C, H_out, W_out))
    for i in xrange(H_out):
        for j in xrange(W_out):
            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))
            x_masked = x[:, :, r_start:r_end, c_start:c_end]

            out[:, :, i, j] = np.sum(x_masked, axis=(2, 3)) / (
                (r_end - r_start) * (c_end - c_start))
    return out


class TestPool2d_Op(OpTest):
    def setUp(self):
49
        self.use_cudnn = False
C
chengduoZH 已提交
50
        self.init_test_case()
C
chengduoZH 已提交
51
        self.init_global_pool()
C
chengduoZH 已提交
52 53
        self.init_op_type()
        self.init_pool_type()
C
fix bug  
chengduoZH 已提交
54 55
        if self.global_pool:
            self.paddings = [0 for _ in range(len(self.paddings))]
C
chengduoZH 已提交
56 57
        input = np.random.random(self.shape).astype("float32")
        output = self.pool2D_forward_naive(input, self.ksize, self.strides,
C
fix bug  
chengduoZH 已提交
58 59
                                           self.paddings,
                                           self.global_pool).astype("float32")
60
        self.inputs = {'X': input}
C
chengduoZH 已提交
61 62 63 64 65

        self.attrs = {
            'strides': self.strides,
            'paddings': self.paddings,
            'ksize': self.ksize,
C
chengduoZH 已提交
66 67
            'pooling_type': self.pool_type,
            'global_pooling': self.global_pool,
68 69
            'use_cudnn': self.use_cudnn,
            'data_format': 'AnyLayout'  # TODO(dzhwinter) : should be fix latter
C
chengduoZH 已提交
70 71
        }

Y
Yu Yang 已提交
72
        self.outputs = {'Out': output.astype('float32')}
C
chengduoZH 已提交
73 74

    def test_check_output(self):
75 76 77 78 79
        if self.use_cudnn:
            place = core.CUDAPlace(0)
            self.check_output_with_place(place, atol=1e-5)
        else:
            self.check_output()
C
chengduoZH 已提交
80 81

    def test_check_grad(self):
82 83 84 85 86
        if self.use_cudnn and self.pool_type != "max":
            place = core.CUDAPlace(0)
            self.check_grad_with_place(
                place, set(['X']), 'Out', max_relative_error=0.07)
        elif self.pool_type != "max":
87
            self.check_grad(set(['X']), 'Out', max_relative_error=0.07)
C
chengduoZH 已提交
88

C
chengduoZH 已提交
89
    def init_test_case(self):
C
chengduoZH 已提交
90 91 92 93 94
        self.shape = [2, 3, 5, 5]
        self.ksize = [3, 3]
        self.strides = [1, 1]
        self.paddings = [0, 0]

C
chengduoZH 已提交
95 96 97 98 99
    def init_op_type(self):
        self.op_type = "pool2d"

    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
100 101 102 103
        self.pool2D_forward_naive = avg_pool2D_forward_naive

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

C
chengduoZH 已提交
105

C
chengduoZH 已提交
106
class TestCase1(TestPool2d_Op):
C
chengduoZH 已提交
107
    def init_test_case(self):
C
chengduoZH 已提交
108
        self.shape = [2, 3, 7, 7]
C
chengduoZH 已提交
109 110
        self.ksize = [3, 3]
        self.strides = [1, 1]
C
chengduoZH 已提交
111
        self.paddings = [0, 0]
C
chengduoZH 已提交
112

C
chengduoZH 已提交
113 114 115 116 117
    def init_op_type(self):
        self.op_type = "pool2d"

    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
118 119 120 121
        self.pool2D_forward_naive = avg_pool2D_forward_naive

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

C
chengduoZH 已提交
123

C
chengduoZH 已提交
124
class TestCase2(TestPool2d_Op):
C
chengduoZH 已提交
125
    def init_test_case(self):
C
chengduoZH 已提交
126
        self.shape = [2, 3, 7, 7]
C
chengduoZH 已提交
127 128 129 130
        self.ksize = [3, 3]
        self.strides = [1, 1]
        self.paddings = [1, 1]

C
chengduoZH 已提交
131 132 133 134 135
    def init_op_type(self):
        self.op_type = "pool2d"

    def init_pool_type(self):
        self.pool_type = "avg"
C
chengduoZH 已提交
136
        self.pool2D_forward_naive = avg_pool2D_forward_naive
C
chengduoZH 已提交
137

C
chengduoZH 已提交
138 139
    def init_global_pool(self):
        self.global_pool = False
C
chengduoZH 已提交
140

C
chengduoZH 已提交
141

C
chengduoZH 已提交
142
class TestCase3(TestPool2d_Op):
C
chengduoZH 已提交
143 144 145 146 147
    def init_op_type(self):
        self.op_type = "pool2d"

    def init_pool_type(self):
        self.pool_type = "max"
C
chengduoZH 已提交
148
        self.pool2D_forward_naive = max_pool2D_forward_naive
C
chengduoZH 已提交
149

C
chengduoZH 已提交
150 151

class TestCase4(TestCase1):
C
chengduoZH 已提交
152 153 154 155 156 157 158
    def init_op_type(self):
        self.op_type = "pool2d"

    def init_pool_type(self):
        self.pool_type = "max"
        self.pool2D_forward_naive = max_pool2D_forward_naive

C
chengduoZH 已提交
159 160

class TestCase5(TestCase2):
C
chengduoZH 已提交
161
    def init_op_type(self):
C
chengduoZH 已提交
162
        self.op_type = "pool2d"
C
chengduoZH 已提交
163 164 165

    def init_pool_type(self):
        self.pool_type = "max"
C
chengduoZH 已提交
166
        self.pool2D_forward_naive = max_pool2D_forward_naive
C
chengduoZH 已提交
167 168


169 170
#--------------------test pool2d--------------------
class TestCUDNNCase1(TestPool2d_Op):
C
chengduoZH 已提交
171
    def init_op_type(self):
172 173
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
174 175


176
class TestCUDNNCase2(TestCase1):
C
chengduoZH 已提交
177
    def init_op_type(self):
178 179
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
180 181


182
class TestCUDNNCase3(TestCase2):
C
chengduoZH 已提交
183
    def init_op_type(self):
184 185
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
186 187


188
class TestCUDNNCase4(TestCase3):
C
chengduoZH 已提交
189
    def init_op_type(self):
190 191
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
192 193


194
class TestCUDNNCase5(TestCase4):
C
chengduoZH 已提交
195
    def init_op_type(self):
196 197
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
198

C
chengduoZH 已提交
199

200
class TestCUDNNCase6(TestCase5):
C
chengduoZH 已提交
201
    def init_op_type(self):
202 203
        self.use_cudnn = True
        self.op_type = "pool2d"
C
chengduoZH 已提交
204

C
chengduoZH 已提交
205 206 207

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