forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathop_quantized_conv2d.cpp
More file actions
1197 lines (1151 loc) · 37.4 KB
/
Copy pathop_quantized_conv2d.cpp
File metadata and controls
1197 lines (1151 loc) · 37.4 KB
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <executorch/backends/cadence/generic/operators/op_quantized_conv2d.h>
#include <executorch/backends/cadence/generic/kernels/kernels.h>
#include <executorch/backends/cadence/generic/operators/cadence_type_util.h>
#include <executorch/runtime/core/exec_aten/util/scalar_type_util.h>
namespace impl {
namespace generic {
namespace native {
using ::executorch::aten::ScalarType;
using ::executorch::aten::Tensor;
using ::executorch::runtime::KernelRuntimeContext;
using ::impl::generic::kernels::quantize;
/* This implements a generic 2d conv kernel that operates on raw pointers.
* The quantized version handles quantized convolutions for 2D inputs.
* The input is of shape [n x c x h x w]
* The weight is of shape [oc x wc x wh x ww], where wc == c
* The output is of shape [n x oc x oh x ow]
* The bias is of shape [oc]
*/
template <
typename IT = float,
typename WT = IT,
typename BT = IT,
typename OT = IT,
bool quantized = false>
__attribute__((noinline)) void conv2d_nchw_core_generic(
// All the arrays
const IT* __restrict__ p_in,
const WT* __restrict__ p_weight,
const BT* __restrict__ p_bias,
OT* __restrict__ p_out,
// The array sizes
int32_t n,
int32_t c,
int32_t h,
int32_t w,
int32_t oc,
int32_t wc,
int32_t wh,
int32_t ww,
int32_t oh,
int32_t ow,
// Stride
int16_t s0,
int16_t s1,
// Padding
int16_t p0,
int16_t p1,
// Dilation
int16_t d0,
int16_t d1,
// Group for depthwise conv
int16_t groups,
// Optional args that are only relevant for quantized convolution
// input zero point
IT in_zero_point = 0,
// weight zero point
int32_t weight_zero_point = 0,
float bias_scale = 1,
float out_scale = 1,
OT out_zero_point = 0) {
const float inv_out_scale = 1.f / out_scale;
bool zero_pad_unit_dilation = d0 == 1 && d1 == 1 && p0 == 0 && p1 == 0;
// Compute the number of in and out channels per group
const int ocpg = oc / groups;
const int icpg = c / groups;
// Iterate over all the output batches (i.e., n)
for (int _n = 0; _n < n; ++_n) {
const IT* in_batch = p_in + _n * c * h * w;
OT* out_batch = p_out + _n * oc * oh * ow;
// Compute separable convolution for each group
for (int _g = 0; _g < groups; ++_g) {
// Identify the input and output channels involved in the computation
// of this group
int sic = _g * icpg;
int soc = _g * ocpg;
// Populate all the output channels in the group
for (int _oc = soc; _oc < soc + ocpg; ++_oc) {
OT* out_plane = out_batch + _oc * oh * ow;
const WT* weight_batch = p_weight + _oc * wc * wh * ww;
// We compute one output channel at a time. The computation can be
// thought of as a stencil computation: we iterate over an input of size
// icpg x h x w, with a stencil of size icpg x wh x ww, to compute an
// output channel of size 1 x oh x ow.
for (int _h = 0, _oh = 0; _oh < oh; _h += s0, ++_oh) {
for (int _w = 0, _ow = 0; _ow < ow; _w += s1, ++_ow) {
float acc = p_bias[_oc];
// Below is the stencil computation that performs the hadamard
// product+accumulation of each input channel (contributing to the
// output channel being computed) with the corresponding weight
// channel.
// If the padding is 0, and dilation is 1, then we can remove the
// unnecessary checks, and simplify the code so that it can be
// vectorized by Tensilica compiler.
if (zero_pad_unit_dilation) {
for (int _ic = sic; _ic < sic + icpg; ++_ic) {
const IT* in_plane = in_batch + _ic * h * w;
const WT* weight_plane = weight_batch + (_ic - sic) * wh * ww;
for (int _wh = 0; _wh < wh; ++_wh) {
for (int _ww = 0; _ww < ww; ++_ww) {
int ioff = (_h + _wh) * w + (_w + _ww);
int woff = _wh * ww + _ww;
float lhs = in_plane[ioff] - in_zero_point;
float rhs = weight_plane[woff] -
(quantized ? weight_zero_point : 0);
acc += lhs * rhs;
}
}
}
} else {
for (int _ic = sic; _ic < sic + icpg; ++_ic) {
const IT* in_plane = in_batch + _ic * h * w;
const WT* weight_plane = weight_batch + (_ic - sic) * wh * ww;
for (int _wh = 0; _wh < wh; ++_wh) {
for (int _ww = 0; _ww < ww; ++_ww) {
if (((_h + d0 * _wh - p0) >= 0) &&
((_h + d0 * _wh - p0) < h) &&
((_w + d1 * _ww - p1) >= 0) &&
((_w + d1 * _ww - p1) < w)) {
int ioff =
(_h + d0 * _wh - p0) * w + (_w + d1 * _ww - p1);
int woff = _wh * ww + _ww;
float lhs = in_plane[ioff] - in_zero_point;
float rhs = weight_plane[woff] -
(quantized ? weight_zero_point : 0);
acc += lhs * rhs;
}
}
}
}
}
if (quantized) {
float val = bias_scale * acc;
out_plane[_oh * ow + _ow] =
quantize<OT>(val, inv_out_scale, out_zero_point);
} else {
out_plane[_oh * ow + _ow] = acc;
}
}
}
}
}
}
}
template <
typename IT = float,
typename WT = IT,
typename BT = IT,
typename OT = IT,
bool quantized = false>
__attribute__((noinline)) void conv2d_nhwc_core_generic(
// All the arrays
const IT* __restrict__ p_in,
const WT* __restrict__ p_weight,
const BT* __restrict__ p_bias,
OT* __restrict__ p_out,
// The array sizes
int32_t n,
int32_t h,
int32_t w,
int32_t c,
int32_t oc,
int32_t wh,
int32_t ww,
int32_t wc,
int32_t oh,
int32_t ow,
// Stride
int16_t s0,
int16_t s1,
// Padding
int16_t p0,
int16_t p1,
// Dilation
int16_t d0,
int16_t d1,
// Group for depthwise conv
int16_t groups,
// Optional args that are only relevant for quantized convolution
// input zero point
IT in_zero_point = 0,
// weight zero point
int32_t weight_zero_point = 0,
float bias_scale = 1,
float out_scale = 1,
OT out_zero_point = 0,
// Whether this is a depthwise conv with [KH, KW, OC] weight layout
bool depthwise_hwc_weight = false) {
float inv_out_scale = 1.f / out_scale;
bool zero_pad_unit_dilation = d0 == 1 && d1 == 1 && p0 == 0 && p1 == 0;
// Compute the number of in and out channels per group
const int ocpg = oc / groups;
const int icpg = c / groups;
// Iterate over all the output batches (i.e., n)
for (int _n = 0; _n < n; ++_n) {
const IT* in_batch = p_in + _n * h * w * c;
OT* out_batch = p_out + _n * oh * ow * oc;
for (int _h = 0, _oh = 0; _oh < oh; _h += s0, ++_oh) {
for (int _w = 0, _ow = 0; _ow < ow; _w += s1, ++_ow) {
OT* out_line = out_batch + (_oh * ow + _ow) * oc;
// Compute separable convolution for each group
for (int _g = 0; _g < groups; ++_g) {
// Identify the input and output channels involved in the computation
// of this group
int sic = _g * icpg;
int soc = _g * ocpg;
// Populate all the output channels in the group
for (int _oc = soc; _oc < soc + ocpg; ++_oc) {
float acc = p_bias[_oc];
if (zero_pad_unit_dilation) {
for (int _wh = 0; _wh < wh; ++_wh) {
for (int _ww = 0; _ww < ww; ++_ww) {
const IT* in_line =
in_batch + (_h + _wh) * w * c + (_w + _ww) * c;
for (int _ic = sic; _ic < sic + icpg; ++_ic) {
float lhs = in_line[_ic] - in_zero_point;
float rhs;
if (depthwise_hwc_weight) {
rhs = p_weight[_wh * ww * oc + _ww * oc + _oc];
} else {
const WT* weight_line = p_weight + _oc * wh * ww * wc +
_wh * ww * wc + _ww * wc;
rhs = weight_line[_ic - sic];
}
rhs -= (quantized ? weight_zero_point : 0);
acc += lhs * rhs;
}
}
}
} else {
for (int _wh = 0; _wh < wh; ++_wh) {
for (int _ww = 0; _ww < ww; ++_ww) {
if (((_h + d0 * _wh - p0) >= 0) &&
((_h + d0 * _wh - p0) < h) &&
((_w + d1 * _ww - p1) >= 0) &&
((_w + d1 * _ww - p1) < w)) {
const IT* in_line = in_batch +
(_h + d0 * _wh - p0) * w * c + (_w + d1 * _ww - p1) * c;
for (int _ic = sic; _ic < sic + icpg; ++_ic) {
float lhs = in_line[_ic] - in_zero_point;
float rhs;
if (depthwise_hwc_weight) {
rhs = p_weight[_wh * ww * oc + _ww * oc + _oc];
} else {
const WT* weight_line = p_weight + _oc * wh * ww * wc +
_wh * ww * wc + _ww * wc;
rhs = weight_line[_ic - sic];
}
rhs -= (quantized ? weight_zero_point : 0);
acc += lhs * rhs;
}
}
}
}
}
if (quantized) {
float val = bias_scale * acc;
out_line[_oc] = quantize<OT>(val, inv_out_scale, out_zero_point);
} else {
out_line[_oc] = acc;
}
}
}
}
}
}
}
void quantized_conv2d_nchw(
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int16_t groups,
int32_t in_zero_point,
int32_t weight_zero_point,
float bias_scale,
float output_scale,
int32_t output_zero_point,
Tensor& out) {
bool conv1d = input.dim() == 3;
// input = [n, c, h, w]
const int n = input.size(0);
const int c = input.size(1);
const int h = conv1d ? 1 : input.size(2);
const int w = conv1d ? input.size(2) : input.size(3);
// weight = [oc, wc, wh, ww]
const int oc = weight.size(0);
const int wc = weight.size(1);
const int wh = conv1d ? 1 : weight.size(2);
const int ww = conv1d ? weight.size(2) : weight.size(3);
// output = [n, oc, oh, ow]
const int oh = conv1d ? 1 : out.size(2);
const int ow = conv1d ? out.size(2) : out.size(3);
ET_CHECK_MSG(
weight_zero_point >= -128 && weight_zero_point <= 127,
"weight_zero_point %" PRId32
" must be in range [-128, 127] for int8 cast",
weight_zero_point);
// Handle W8A16 heterogeneous type (int16_t activations, int8_t weights)
if (out.scalar_type() == ScalarType::Short &&
input.scalar_type() == ScalarType::Short &&
weight.scalar_type() == ScalarType::Char) {
conv2d_nchw_core_generic<int16_t, int8_t, int32_t, int16_t, true>(
input.const_data_ptr<int16_t>(),
weight.const_data_ptr<int8_t>(),
bias.const_data_ptr<int32_t>(),
out.mutable_data_ptr<int16_t>(),
n,
c,
h,
w,
oc,
wc,
wh,
ww,
oh,
ow,
stride[0],
stride[1],
padding[0],
padding[1],
dilation[0],
dilation[1],
groups,
static_cast<int16_t>(in_zero_point),
static_cast<int8_t>(weight_zero_point),
bias_scale,
output_scale,
static_cast<int16_t>(output_zero_point));
return;
}
#define typed_quantized_conv2d_nchw(ctype, dtype) \
case ScalarType::dtype: { \
conv2d_nchw_core_generic<ctype, ctype, int32_t, ctype, true>( \
input.const_data_ptr<ctype>(), \
weight.const_data_ptr<ctype>(), \
bias.const_data_ptr<int32_t>(), \
out.mutable_data_ptr<ctype>(), \
n, \
c, \
h, \
w, \
oc, \
wc, \
wh, \
ww, \
oh, \
ow, \
stride[0], \
stride[1], \
padding[0], \
padding[1], \
dilation[0], \
dilation[1], \
groups, \
in_zero_point, \
weight_zero_point, \
bias_scale, \
output_scale, \
(ctype)output_zero_point); \
break; \
}
ScalarType dtype = out.scalar_type();
switch (dtype) {
ET_FORALL_CADENCE_QUANTIZED_TYPES_WITH_INT16(typed_quantized_conv2d_nchw);
default:
ET_DCHECK_MSG(
false, "Unhandled dtype %s", torch::executor::toString(dtype));
}
#undef typed_quantized_conv2d_nchw
}
// Depthwise NHWC convolution.
// Weight layout is [*kernel_size, OC]:
// 2D: [KH, KW, OC] (3D tensor)
// 1D: [K, OC] (2D tensor)
// This differs from regular NHWC conv where weight is [OC, KH, KW, IC].
void quantized_conv2d_nhwc_depthwise(
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int16_t groups,
int32_t in_zero_point,
int32_t weight_zero_point,
float bias_scale,
float output_scale,
int32_t output_zero_point,
Tensor& out) {
const bool conv1d = input.dim() == 3;
// input NHWC: [N, H, W, C] or [N, W, C] for 1D
const int n = static_cast<int>(input.size(0));
const int h = static_cast<int>(conv1d ? 1 : input.size(1));
const int w = static_cast<int>(conv1d ? input.size(1) : input.size(2));
const int c = static_cast<int>(conv1d ? input.size(2) : input.size(3));
// Depthwise weight: [KH, KW, OC] or [K, OC] for 1D
const int kh = conv1d ? 1 : static_cast<int>(weight.size(0));
const int kw = conv1d ? static_cast<int>(weight.size(0))
: static_cast<int>(weight.size(1));
const int oc = conv1d ? static_cast<int>(weight.size(1))
: static_cast<int>(weight.size(2));
// output NHWC: [N, OH, OW, OC] or [N, OW, OC] for 1D
const int oh = static_cast<int>(conv1d ? 1 : out.size(1));
const int ow = static_cast<int>(conv1d ? out.size(1) : out.size(2));
const float inv_out_scale = 1.f / output_scale;
// Depthwise: each output channel depends on exactly one input channel.
// ocpg = oc / groups output channels per group.
const int ocpg = oc / groups;
#define typed_quantized_conv2d_nhwc_depthwise(ctype, dtype) \
case ScalarType::dtype: { \
const auto* p_in = input.const_data_ptr<ctype>(); \
const auto* p_weight = weight.const_data_ptr<ctype>(); \
const auto* p_bias = bias.const_data_ptr<int32_t>(); \
auto* p_out = out.mutable_data_ptr<ctype>(); \
for (int _n = 0; _n < n; ++_n) { \
const ctype* in_batch = p_in + _n * h * w * c; \
ctype* out_batch = p_out + _n * oh * ow * oc; \
for (int _oh = 0; _oh < oh; ++_oh) { \
for (int _ow = 0; _ow < ow; ++_ow) { \
ctype* out_pixel = out_batch + (_oh * ow + _ow) * oc; \
for (int _g = 0; _g < groups; ++_g) { \
int soc = _g * ocpg; \
for (int _oc = soc; _oc < soc + ocpg; ++_oc) { \
float acc = p_bias[_oc]; \
for (int _kh = 0; _kh < kh; ++_kh) { \
for (int _kw = 0; _kw < kw; ++_kw) { \
int ih = _oh * stride[0] + _kh * dilation[0] - padding[0]; \
int iw = _ow * stride[1] + _kw * dilation[1] - padding[1]; \
if (ih >= 0 && ih < h && iw >= 0 && iw < w) { \
float lhs = \
in_batch[ih * w * c + iw * c + _g] - in_zero_point; \
float rhs = p_weight[_kh * kw * oc + _kw * oc + _oc] - \
weight_zero_point; \
acc += lhs * rhs; \
} \
} \
} \
float val = bias_scale * acc; \
out_pixel[_oc] = quantize<ctype>( \
val, inv_out_scale, (ctype)output_zero_point); \
} \
} \
} \
} \
} \
break; \
}
ScalarType dtype = out.scalar_type();
switch (dtype) {
ET_FORALL_CADENCE_QUANTIZED_TYPES(typed_quantized_conv2d_nhwc_depthwise);
default:
ET_DCHECK_MSG(
false, "Unhandled dtype %s", torch::executor::toString(dtype));
}
#undef typed_quantized_conv2d_nhwc_depthwise
}
void quantized_conv2d_nhwc(
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int16_t groups,
int32_t in_zero_point,
int32_t weight_zero_point,
float bias_scale,
float output_scale,
int32_t output_zero_point,
Tensor& out) {
const bool conv1d = input.dim() == 3;
// input = [n, h, w, c]
const int n = static_cast<int>(input.size(0));
const int h = static_cast<int>(conv1d ? 1 : input.size(1));
const int w = static_cast<int>(conv1d ? input.size(1) : input.size(2));
const int c = static_cast<int>(conv1d ? input.size(2) : input.size(3));
// Depthwise is defined by in_channels == groups; depthwise weights have one
// fewer dim than regular weights because the IC dim (always 1) was squeezed.
const bool is_depthwise = c == groups && weight.dim() < input.dim();
int oc, wh, ww, wc;
if (is_depthwise) {
// Depthwise weight: conv2d=[KH, KW, OC], conv1d=[K, OC]
wh = static_cast<int>(conv1d ? 1 : weight.size(0));
ww = static_cast<int>(conv1d ? weight.size(0) : weight.size(1));
oc = static_cast<int>(conv1d ? weight.size(1) : weight.size(2));
wc = 1;
} else {
// Regular weight is [OC, WH, WW, WC] or for conv1d [OC, WW, WC]
oc = static_cast<int>(weight.size(0));
wh = static_cast<int>(conv1d ? 1 : weight.size(1));
ww = static_cast<int>(conv1d ? weight.size(1) : weight.size(2));
wc = static_cast<int>(conv1d ? weight.size(2) : weight.size(3));
}
// output = [n, oh, ow, oc]
const int oh = static_cast<int>(conv1d ? 1 : out.size(1));
const int ow = static_cast<int>(conv1d ? out.size(1) : out.size(2));
// Handle W8A16 heterogeneous type (int16_t activations, int8_t weights)
if (out.scalar_type() == ScalarType::Short &&
input.scalar_type() == ScalarType::Short &&
weight.scalar_type() == ScalarType::Char) {
conv2d_nhwc_core_generic<int16_t, int8_t, int32_t, int16_t, true>(
input.const_data_ptr<int16_t>(),
weight.const_data_ptr<int8_t>(),
bias.const_data_ptr<int32_t>(),
out.mutable_data_ptr<int16_t>(),
n,
h,
w,
c,
oc,
wh,
ww,
wc,
oh,
ow,
stride[0],
stride[1],
padding[0],
padding[1],
dilation[0],
dilation[1],
groups,
static_cast<int16_t>(in_zero_point),
static_cast<int8_t>(weight_zero_point),
bias_scale,
output_scale,
static_cast<int16_t>(output_zero_point),
is_depthwise);
return;
}
#define typed_quantized_conv2d_nhwc(ctype, dtype) \
case ScalarType::dtype: { \
conv2d_nhwc_core_generic<ctype, ctype, int32_t, ctype, true>( \
input.const_data_ptr<ctype>(), \
weight.const_data_ptr<ctype>(), \
bias.const_data_ptr<int32_t>(), \
out.mutable_data_ptr<ctype>(), \
n, \
h, \
w, \
c, \
oc, \
wh, \
ww, \
wc, \
oh, \
ow, \
stride[0], \
stride[1], \
padding[0], \
padding[1], \
dilation[0], \
dilation[1], \
groups, \
in_zero_point, \
weight_zero_point, \
bias_scale, \
output_scale, \
(ctype)output_zero_point, \
is_depthwise); \
break; \
}
ScalarType dtype = out.scalar_type();
switch (dtype) {
ET_FORALL_CADENCE_QUANTIZED_TYPES_WITH_INT16(typed_quantized_conv2d_nhwc);
default:
ET_DCHECK_MSG(
false, "Unhandled dtype %s", torch::executor::toString(dtype));
}
#undef typed_quantized_conv2d_nhwc
}
Tensor& quantized_conv2d_nchw_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
const Tensor& weight_zero_point,
const Tensor& bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED const Tensor& out_multiplier,
ET_UNUSED const Tensor& out_shift,
Tensor& out) {
const float bias_scale_float = bias_scale.const_data_ptr<float>()[0];
const int32_t weight_zero_point_int =
weight_zero_point.const_data_ptr<int32_t>()[0];
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point_int,
bias_scale_float,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nhwc_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
const Tensor& weight_zero_point,
const Tensor& bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED const Tensor& out_multiplier,
ET_UNUSED const Tensor& out_shift,
Tensor& out) {
const float bias_scale_float = bias_scale.const_data_ptr<float>()[0];
const int32_t weight_zero_point_int =
weight_zero_point.const_data_ptr<int32_t>()[0];
quantized_conv2d_nhwc(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point_int,
bias_scale_float,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_asym8sxsym8s_asym8s_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_asym8uxsym8u_asym8u_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_depthwise_asym8sxsym8s_asym8s_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_depthwise_asym8uxsym8u_asym8u_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_dilated_asym8sxsym8s_asym8s_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nchw_dilated_asym8uxsym8u_asym8u_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nchw(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_nhwc_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
ET_UNUSED const std::optional<Tensor>& offset,
Tensor& out) {
quantized_conv2d_nhwc(
input,
weight,
bias,
stride,
padding,
dilation,
groups,
in_zero_point,
weight_zero_point,
bias_scale,
output_scale,
output_zero_point,
out);
return out;
}
Tensor& quantized_conv2d_depthwise_nhwc_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,
int64_t weight_zero_point,
double bias_scale,
double output_scale,
int64_t output_zero_point,
ET_UNUSED int64_t out_multiplier,
ET_UNUSED int64_t out_shift,
Tensor& out) {
quantized_conv2d_nhwc(
input,
weight,
bias,
stride,
padding,
dilation,
static_cast<int16_t>(groups),
static_cast<int32_t>(in_zero_point),
static_cast<int32_t>(weight_zero_point),
static_cast<float>(bias_scale),
static_cast<float>(output_scale),
static_cast<int32_t>(output_zero_point),
out);
return out;
}
Tensor& quantized_conv2d_nhwc_asym8sxsym8s_asym8s_per_tensor_out(
ET_UNUSED KernelRuntimeContext& ctx,
const Tensor& input,
const Tensor& weight,
const Tensor& bias,
IntArrayRef stride,
IntArrayRef padding,
IntArrayRef dilation,
int64_t groups,
int64_t in_zero_point,