test_operator.py 11.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
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
189
190
191
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# Copyright (c) OpenMMLab. All rights reserved.
from copy import deepcopy

import torch
import torch.nn as nn

from mmcv.cnn.rfsearch.operator import Conv2dRFSearchOp

global_config = dict(
    step=0,
    max_step=12,
    search_interval=1,
    exp_rate=0.5,
    init_alphas=0.01,
    mmin=1,
    mmax=24,
    num_branches=2,
    skip_layer=['stem', 'layer1'])


# test with 3x3 conv
def test_rfsearch_operator_3x3():
    conv = nn.Conv2d(
        in_channels=3, out_channels=3, kernel_size=3, stride=1, padding=1)
    operator = Conv2dRFSearchOp(conv, global_config)
    x = torch.randn(1, 3, 32, 32)

    # set no_grad to perform in-place operator
    with torch.no_grad():
        # After expand: (1, 1) (2, 2)
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (2, 2)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After estimate: (2, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (2, 2)
        assert operator.op_layer.dilation == (2, 2)
        assert operator.op_layer.padding == (2, 2)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (3, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.1
        operator.branch_weights[1] = 0.4
        # After estimate: (3, 3) with branch_weights of [0.2 0.8]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (3, 3)
        assert operator.op_layer.dilation == (3, 3)
        assert operator.op_layer.padding == (3, 3)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)


# test with 5x5 conv
def test_rfsearch_operator_5x5():
    conv = nn.Conv2d(
        in_channels=3, out_channels=3, kernel_size=5, stride=1, padding=2)
    operator = Conv2dRFSearchOp(conv, global_config)
    x = torch.randn(1, 3, 32, 32)

    with torch.no_grad():
        # After expand: (1, 1) (2, 2)
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (2, 2)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After estimate: (2, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (2, 2)
        assert operator.op_layer.dilation == (2, 2)
        assert operator.op_layer.padding == (4, 4)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (3, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.1
        operator.branch_weights[1] = 0.4
        # After estimate: (3, 3) with branch_weights of [0.2 0.8]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (3, 3)
        assert operator.op_layer.dilation == (3, 3)
        assert operator.op_layer.padding == (6, 6)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)


# test with 5x5 conv num_branches=3
def test_rfsearch_operator_5x5_branch3():
    conv = nn.Conv2d(
        in_channels=3, out_channels=3, kernel_size=5, stride=1, padding=2)
    config = deepcopy(global_config)
    config['num_branches'] = 3
    operator = Conv2dRFSearchOp(conv, config)
    x = torch.randn(1, 3, 32, 32)

    with torch.no_grad():
        # After expand: (1, 1) (2, 2)
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (2, 2)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After estimate: (2, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (2, 2)
        assert operator.op_layer.dilation == (2, 2)
        assert operator.op_layer.padding == (4, 4)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (2, 2) (3, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 3
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (2, 2)
        assert operator.dilation_rates[2] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.1
        operator.branch_weights[1] = 0.3
        operator.branch_weights[2] = 0.6
        # After estimate: (3, 3) with branch_weights of [0.1 0.3 0.6]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (3, 3)
        assert operator.op_layer.dilation == (3, 3)
        assert operator.op_layer.padding == (6, 6)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)


# test with 1x5 conv
def test_rfsearch_operator_1x5():
    conv = nn.Conv2d(
        in_channels=3,
        out_channels=3,
        kernel_size=(1, 5),
        stride=1,
        padding=(0, 2))
    operator = Conv2dRFSearchOp(conv, global_config)
    x = torch.randn(1, 3, 32, 32)

    # After expand: (1, 1) (1, 2)
    assert len(operator.dilation_rates) == 2
    assert operator.dilation_rates[0] == (1, 1)
    assert operator.dilation_rates[1] == (1, 2)
    assert torch.all(
        operator.branch_weights.data == global_config['init_alphas']).item()
    # test forward
    assert operator(x).shape == (1, 3, 32, 32)

    with torch.no_grad():
        # After estimate: (1, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (1, 2)
        assert operator.op_layer.dilation == (1, 2)
        assert operator.op_layer.padding == (0, 4)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (1, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (1, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.2
        operator.branch_weights[1] = 0.8
        # After estimate: (3, 3) with branch_weights of [0.2 0.8]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (1, 3)
        assert operator.op_layer.dilation == (1, 3)
        assert operator.op_layer.padding == (0, 6)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)


# test with 5x5 conv initial_dilation=(2, 2)
def test_rfsearch_operator_5x5_d2x2():
    conv = nn.Conv2d(
        in_channels=3,
        out_channels=3,
        kernel_size=5,
        stride=1,
        padding=4,
        dilation=(2, 2))
    operator = Conv2dRFSearchOp(conv, global_config)
    x = torch.randn(1, 3, 32, 32)

    with torch.no_grad():
        # After expand: (1, 1) (3, 3)
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After estimate: (2, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (2, 2)
        assert operator.op_layer.dilation == (2, 2)
        assert operator.op_layer.padding == (4, 4)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (3, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.8
        operator.branch_weights[1] = 0.2
        # After estimate: (3, 3) with branch_weights of [0.8 0.2]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.op_layer.dilation == (1, 1)
        assert operator.op_layer.padding == (2, 2)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)


# test with 5x5 conv initial_dilation=(1, 2)
def test_rfsearch_operator_5x5_d1x2():
    conv = nn.Conv2d(
        in_channels=3,
        out_channels=3,
        kernel_size=5,
        stride=1,
        padding=(2, 4),
        dilation=(1, 2))
    operator = Conv2dRFSearchOp(conv, global_config)
    x = torch.randn(1, 3, 32, 32)

    with torch.no_grad():
        # After expand: (1, 1) (2, 3)
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (2, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After estimate: (2, 2) with branch_weights of [0.5 0.5]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (2, 2)
        assert operator.op_layer.dilation == (2, 2)
        assert operator.op_layer.padding == (4, 4)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        # After expand: (1, 1) (3, 3)
        operator.expand_rates()
        assert len(operator.dilation_rates) == 2
        assert operator.dilation_rates[0] == (1, 1)
        assert operator.dilation_rates[1] == (3, 3)
        assert torch.all(operator.branch_weights.data ==
                         global_config['init_alphas']).item()
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)

        operator.branch_weights[0] = 0.1
        operator.branch_weights[1] = 0.8
        # After estimate: (3, 3) with branch_weights of [0.1 0.8]
        operator.estimate_rates()
        assert len(operator.dilation_rates) == 1
        assert operator.dilation_rates[0] == (3, 3)
        assert operator.op_layer.dilation == (3, 3)
        assert operator.op_layer.padding == (6, 6)
        # test forward
        assert operator(x).shape == (1, 3, 32, 32)