forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConvolutionMM2d.cpp
575 lines (519 loc) · 15.3 KB
/
ConvolutionMM2d.cpp
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
#include <ATen/ATen.h>
#include <ATen/AccumulateType.h>
#include <ATen/Dispatch.h>
#include <ATen/Parallel.h>
#include <ATen/TensorUtils.h>
#include <ATen/core/grad_mode.h>
#include <ATen/div_rtn.h>
#include <ATen/native/Unfold2d.h>
namespace at {
namespace native {
namespace {
static inline void slow_conv2d_shape_check(
const Tensor& input,
const Tensor& grad_output,
const Tensor& weight,
const Tensor& bias,
int64_t kernel_height,
int64_t kernel_width,
int64_t stride_height,
int64_t stride_width,
int64_t pad_height,
int64_t pad_width,
bool weight_optional) {
TORCH_CHECK(
kernel_width > 0 && kernel_height > 0,
"kernel size should be greater than zero, but got kernel_height: ",
kernel_height,
" kernel_width: ",
kernel_width);
TORCH_CHECK(
stride_width > 0 && stride_height > 0,
"stride should be greater than zero, but got stride_height: ",
stride_height,
" stride_width: ",
stride_width);
if (weight.defined()) {
TORCH_CHECK(
weight.numel() > 0 && (weight.dim() == 2 || weight.dim() == 4),
"non-empty 2D or 4D weight tensor expected, but got: ",
weight.sizes());
if (bias.defined()) {
check_dim_size(bias, 1, 0, weight.size(0));
}
} else {
TORCH_CHECK(weight_optional, "weight tensor is undefined");
}
const int64_t ndim = input.dim();
const int64_t dim_batch = 0;
const int64_t dim_planes = 1;
const int64_t dim_height = 2;
const int64_t dim_width = 3;
// Allow for empty batch size but not other dimensions
bool valid_empty = ndim == 4 && input.size(dim_batch) == 0 &&
input.size(dim_planes) != 0 && input.size(dim_height) != 0 &&
input.size(dim_width) != 0;
TORCH_CHECK(
(input.numel() > 0 || valid_empty) && ndim == 4,
"non-empty 4D input tensor expected but got: ",
input.sizes());
const int64_t input_height = input.size(dim_height);
const int64_t input_width = input.size(dim_width);
const int64_t exact_input_height = input_height + 2 * pad_height;
const int64_t exact_input_width = input_width + 2 * pad_width;
TORCH_CHECK(
exact_input_height >= kernel_height && exact_input_width >= kernel_width,
"Calculated padded input size per channel: (",
exact_input_height,
" x ",
exact_input_width,
"). ",
"Kernel size: (",
kernel_height,
" x ",
kernel_width,
"). Kernel size can't be greater than actual input size");
const int64_t output_height =
div_rtn<int64_t>(exact_input_height - kernel_height, stride_height) + 1;
const int64_t output_width =
div_rtn<int64_t>(exact_input_width - kernel_width, stride_width) + 1;
TORCH_CHECK(
output_width >= 1 && output_height >= 1,
"Given input size per channel: (",
input_height,
" x ",
input_width,
"). "
"Calculated output size per channel: (",
output_height,
" x ",
output_width,
"). Output size is too small");
if (weight.defined()) {
int64_t n_input_plane = weight.size(1);
if (weight.dim() == 2) {
n_input_plane /= (kernel_height * kernel_width);
}
check_dim_size(input, ndim, dim_planes, n_input_plane);
}
if (grad_output.defined()) {
if (weight.defined()) {
int64_t n_output_plane = weight.size(0);
check_dim_size(grad_output, ndim, dim_planes, n_output_plane);
} else if (bias.defined()) {
TORCH_CHECK(bias.numel() > 0, "non-empty bias tensor expected");
const int64_t n_output_plane = bias.dim() == 0 ? 1 : bias.size(0);
check_dim_size(grad_output, ndim, dim_planes, n_output_plane);
}
check_dim_size(grad_output, ndim, dim_height, output_height);
check_dim_size(grad_output, ndim, dim_width, output_width);
}
}
static Tensor view_weight_2d(const Tensor& weight_) {
Tensor weight = weight_.contiguous();
if (weight.dim() == 4) {
const int64_t s1 = weight.size(0);
const int64_t s2 = weight.size(1) * weight.size(2) * weight.size(3);
return weight.view({s1, s2});
} else {
return weight;
}
}
static void slow_conv2d_update_output_frame(
Tensor& input,
Tensor& output,
const Tensor& weight,
const Tensor& bias,
Tensor& finput,
int64_t kernel_height,
int64_t kernel_width,
int64_t stride_height,
int64_t stride_width,
int64_t pad_height,
int64_t pad_width,
int64_t n_input_plane,
int64_t input_height,
int64_t input_width,
int64_t n_output_plane,
int64_t output_height,
int64_t output_width) {
unfolded2d_copy_stub(
kCPU,
finput,
input,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
n_input_plane,
input_height,
input_width,
output_height,
output_width);
auto output2d =
output.reshape({n_output_plane, output_height * output_width});
if (bias.defined()) {
for (int64_t i = 0; i < n_output_plane; i++) {
output[i].fill_(bias[i].item());
}
} else {
output.zero_();
}
output2d.addmm_(weight, finput, 1, 1);
}
void slow_conv2d_backward_update_grad_input_frame(
Tensor& grad_input,
const Tensor& grad_output,
const Tensor& weight,
Tensor& fgrad_input,
int64_t kernel_height,
int64_t kernel_width,
int64_t stride_height,
int64_t stride_width,
int64_t pad_height,
int64_t pad_width) {
auto grad_output_2d = grad_output.reshape(
{grad_output.size(0), grad_output.size(1) * grad_output.size(2)});
fgrad_input.addmm_(weight, grad_output_2d, 0, 1);
grad_input.zero_();
unfolded2d_acc_stub(
kCPU,
fgrad_input,
grad_input,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
grad_input.size(0),
grad_input.size(1),
grad_input.size(2),
grad_output.size(1),
grad_output.size(2));
}
void slow_conv2d_backward_out_cpu_template(
Tensor& grad_input,
const Tensor& grad_output_,
const Tensor& input_,
const Tensor& weight_,
const Tensor& finput,
Tensor& fgrad_input,
IntArrayRef kernel_size,
IntArrayRef stride,
IntArrayRef padding) {
const int64_t kernel_height = kernel_size[0];
const int64_t kernel_width = kernel_size[1];
const int64_t pad_height = padding[0];
const int64_t pad_width = padding[1];
const int64_t stride_height = stride[0];
const int64_t stride_width = stride[1];
const Tensor weight = view_weight_2d(weight_);
slow_conv2d_shape_check(
input_,
grad_output_,
weight,
Tensor(),
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
false);
const Tensor input = input_.contiguous();
const Tensor grad_output = grad_output_.contiguous();
grad_input.resize_as_(input);
fgrad_input.resize_as_(finput);
fgrad_input.zero_();
const Tensor tweight = weight.transpose(0, 1);
const int64_t batch_size = input.size(0);
at::parallel_for(0, batch_size, 0, [&](int64_t start, int64_t end) {
NoGradGuard no_grad;
AutoNonVariableTypeMode non_variable_type_mode;
for (int64_t t = start; t < end; t++) {
Tensor grad_input_t = grad_input[t];
Tensor grad_output_t = grad_output[t];
Tensor fgrad_input_t = fgrad_input[t];
slow_conv2d_backward_update_grad_input_frame(
grad_input_t,
grad_output_t,
tweight,
fgrad_input_t,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width);
}
});
}
void slow_conv2d_backward_parameters_frame(
Tensor& grad_weight,
Tensor& grad_bias,
Tensor& grad_output,
const Tensor& finput) {
auto grad_output_2d = grad_output.view(
{grad_output.size(0), grad_output.size(1) * grad_output.size(2)});
if (grad_weight.defined()) {
const Tensor tfinput = finput.transpose(0, 1);
grad_weight.addmm_(grad_output_2d, tfinput);
}
if (grad_bias.defined()) {
AT_DISPATCH_FLOATING_TYPES_AND(
at::ScalarType::BFloat16,
grad_output.scalar_type(),
"slow_conv2d_backward_parameters",
[&] {
auto grad_output_2d_acc = grad_output_2d.accessor<scalar_t, 2>();
auto grad_bias_acc = grad_bias.accessor<scalar_t, 1>();
const auto sz = grad_output_2d.size(1);
for (int64_t i = 0; i < grad_bias.size(0); i++) {
scalar_t sum = 0;
for (int64_t k = 0; k < sz; k++) {
sum += grad_output_2d_acc[i][k];
}
grad_bias_acc[i] += sum;
}
});
}
}
static void slow_conv2d_backward_parameters_out_cpu_template(
Tensor& grad_weight,
Tensor& grad_bias,
const Tensor& input_,
const Tensor& grad_output_,
const Tensor& finput,
Tensor fgrad_input,
IntArrayRef kernel_size,
IntArrayRef stride,
IntArrayRef padding) {
CheckedFrom c = "slow_conv2d_backward_parameters_cpu";
auto grad_weight_arg = TensorArg(grad_weight, "grad_weight_arg", 0);
auto grad_bias_arg = TensorArg(grad_bias, "grad_bias_arg", 0);
const int64_t kernel_height = kernel_size[0];
const int64_t kernel_width = kernel_size[1];
const int64_t pad_height = padding[0];
const int64_t pad_width = padding[1];
const int64_t stride_height = stride[0];
const int64_t stride_width = stride[1];
Tensor grad_weight_2d;
if (grad_weight.defined()) {
checkContiguous(c, grad_weight_arg);
grad_weight_2d = view_weight_2d(grad_weight);
}
if (grad_bias.defined()) {
checkContiguous(c, grad_bias_arg);
}
slow_conv2d_shape_check(
input_,
grad_output_,
grad_weight_2d,
grad_bias,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
true);
auto input = input_.contiguous();
auto grad_output = grad_output_.contiguous();
const int64_t batch_size = input.size(0);
for (int64_t t = 0; t < batch_size; t++) {
Tensor grad_output_t = grad_output[t];
Tensor finput_t;
if (grad_weight_2d.defined()) {
finput_t = finput[t];
}
slow_conv2d_backward_parameters_frame(
grad_weight_2d, grad_bias, grad_output_t, finput_t);
}
}
} // namespace
std::tuple<Tensor&, Tensor&, Tensor&> slow_conv2d_forward_out_cpu(
Tensor& output,
Tensor& finput,
Tensor& fgrad_input,
const Tensor& self,
const Tensor& weight_,
IntArrayRef kernel_size,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding) {
const int64_t kernel_height = kernel_size[0];
const int64_t kernel_width = kernel_size[1];
const int64_t pad_height = padding[0];
const int64_t pad_width = padding[1];
const int64_t stride_height = stride[0];
const int64_t stride_width = stride[1];
const Tensor weight_2d = view_weight_2d(weight_);
slow_conv2d_shape_check(
self,
Tensor(),
weight_2d,
bias,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
false);
const Tensor input = self.contiguous();
const int64_t ndim = input.dim();
const int64_t dim_planes = 1;
const int64_t dim_height = 2;
const int64_t dim_width = 3;
const int64_t n_input_plane = input.size(dim_planes);
const int64_t input_height = input.size(dim_height);
const int64_t input_width = input.size(dim_width);
const int64_t n_output_plane = weight_2d.size(0);
const int64_t output_height =
(input_height + 2 * pad_height - kernel_height) / stride_height + 1;
const int64_t output_width =
(input_width + 2 * pad_width - kernel_width) / stride_width + 1;
const int64_t batch_size = input.size(0);
finput.resize_({batch_size,
n_input_plane * kernel_height * kernel_width,
output_height * output_width});
output.resize_({batch_size, n_output_plane, output_height, output_width});
at::parallel_for(0, batch_size, 0, [&](int64_t start, int64_t end) {
NoGradGuard no_grad;
AutoNonVariableTypeMode non_variable_type_mode;
for (int64_t t = start; t < end; t++) {
Tensor input_t = input[t];
Tensor output_t = output[t];
Tensor finput_t = finput[t];
slow_conv2d_update_output_frame(
input_t,
output_t,
weight_2d,
bias,
finput_t,
kernel_height,
kernel_width,
stride_height,
stride_width,
pad_height,
pad_width,
n_input_plane,
input_height,
input_width,
n_output_plane,
output_height,
output_width);
}
});
return std::tuple<Tensor&, Tensor&, Tensor&>(output, finput, fgrad_input);
}
std::tuple<Tensor, Tensor, Tensor> slow_conv2d_forward_cpu(
const Tensor& self,
const Tensor& weight,
IntArrayRef kernel_size,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding) {
auto output = at::empty({0}, self.options());
auto finput = at::empty({0}, self.options());
auto fgrad_input = at::empty({0}, self.options());
slow_conv2d_forward_out_cpu(
output,
finput,
fgrad_input,
self,
weight,
kernel_size,
bias,
stride,
padding);
return std::make_tuple(output, finput, fgrad_input);
}
std::tuple<Tensor&, Tensor&, Tensor&> slow_conv2d_backward_out_cpu(
Tensor& grad_input,
Tensor& grad_weight,
Tensor& grad_bias,
const Tensor& grad_output,
const Tensor& self,
const Tensor& weight,
IntArrayRef kernel_size,
IntArrayRef stride,
IntArrayRef padding,
const Tensor& finput,
const Tensor& fgrad_input) {
if (grad_input.defined()) {
slow_conv2d_backward_out_cpu_template(
grad_input,
grad_output,
self,
weight,
finput,
const_cast<Tensor&>(fgrad_input), // cast away auto-generated const of buffer
kernel_size,
stride,
padding);
}
if (grad_weight.defined()) {
grad_weight.resize_(weight.sizes());
grad_weight.zero_();
}
if (grad_bias.defined()) {
grad_bias.resize_({grad_output.size(1)});
grad_bias.zero_();
}
if (grad_weight.defined() || grad_bias.defined()) {
slow_conv2d_backward_parameters_out_cpu_template(
grad_weight,
grad_bias,
self,
grad_output,
finput,
fgrad_input,
kernel_size,
stride,
padding);
}
return std::tuple<Tensor&, Tensor&, Tensor&>(
grad_input, grad_weight, grad_bias);
}
std::tuple<Tensor, Tensor, Tensor> slow_conv2d_backward_cpu(
const Tensor& grad_output,
const Tensor& self,
const Tensor& weight,
IntArrayRef kernel_size,
IntArrayRef stride,
IntArrayRef padding,
const Tensor& finput,
const Tensor& fgrad_input,
std::array<bool, 3> output_mask) {
Tensor grad_input;
Tensor grad_weight;
Tensor grad_bias;
if (output_mask[0]) {
grad_input = at::empty({0}, grad_output.options());
}
if (output_mask[1]) {
grad_weight = at::empty({0}, grad_output.options());
}
if (output_mask[2]) {
grad_bias = at::empty({0}, grad_output.options());
}
slow_conv2d_backward_out_cpu(
grad_input,
grad_weight,
grad_bias,
grad_output,
self,
weight,
kernel_size,
stride,
padding,
finput,
fgrad_input);
return std::make_tuple(grad_input, grad_weight, grad_bias);
}
} // namespace native
} // namespace at