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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
|
// Copyright 2020 The libgav1 Authors
//
// 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.
#include "src/dsp/convolve.h"
#include "src/utils/cpu.h"
#if LIBGAV1_TARGETING_AVX2
#include <immintrin.h>
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <cstring>
#include "src/dsp/constants.h"
#include "src/dsp/dsp.h"
#include "src/dsp/x86/common_avx2.h"
#include "src/utils/common.h"
#include "src/utils/constants.h"
namespace libgav1 {
namespace dsp {
namespace low_bitdepth {
namespace {
#include "src/dsp/x86/convolve_sse4.inc"
// Multiply every entry in |src[]| by the corresponding entry in |taps[]| and
// sum. The filters in |taps[]| are pre-shifted by 1. This prevents the final
// sum from outranging int16_t.
template <int filter_index>
__m256i SumOnePassTaps(const __m256i* const src, const __m256i* const taps) {
__m256i sum;
if (filter_index < 2) {
// 6 taps.
const __m256i v_madd_21 = _mm256_maddubs_epi16(src[0], taps[0]); // k2k1
const __m256i v_madd_43 = _mm256_maddubs_epi16(src[1], taps[1]); // k4k3
const __m256i v_madd_65 = _mm256_maddubs_epi16(src[2], taps[2]); // k6k5
sum = _mm256_add_epi16(v_madd_21, v_madd_43);
sum = _mm256_add_epi16(sum, v_madd_65);
} else if (filter_index == 2) {
// 8 taps.
const __m256i v_madd_10 = _mm256_maddubs_epi16(src[0], taps[0]); // k1k0
const __m256i v_madd_32 = _mm256_maddubs_epi16(src[1], taps[1]); // k3k2
const __m256i v_madd_54 = _mm256_maddubs_epi16(src[2], taps[2]); // k5k4
const __m256i v_madd_76 = _mm256_maddubs_epi16(src[3], taps[3]); // k7k6
const __m256i v_sum_3210 = _mm256_add_epi16(v_madd_10, v_madd_32);
const __m256i v_sum_7654 = _mm256_add_epi16(v_madd_54, v_madd_76);
sum = _mm256_add_epi16(v_sum_7654, v_sum_3210);
} else if (filter_index == 3) {
// 2 taps.
sum = _mm256_maddubs_epi16(src[0], taps[0]); // k4k3
} else {
// 4 taps.
const __m256i v_madd_32 = _mm256_maddubs_epi16(src[0], taps[0]); // k3k2
const __m256i v_madd_54 = _mm256_maddubs_epi16(src[1], taps[1]); // k5k4
sum = _mm256_add_epi16(v_madd_32, v_madd_54);
}
return sum;
}
template <int filter_index>
__m256i SumHorizontalTaps(const __m256i* const src,
const __m256i* const v_tap) {
__m256i v_src[4];
const __m256i src_long = *src;
const __m256i src_long_dup_lo = _mm256_unpacklo_epi8(src_long, src_long);
const __m256i src_long_dup_hi = _mm256_unpackhi_epi8(src_long, src_long);
if (filter_index < 2) {
// 6 taps.
v_src[0] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 3); // _21
v_src[1] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 7); // _43
v_src[2] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 11); // _65
} else if (filter_index == 2) {
// 8 taps.
v_src[0] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 1); // _10
v_src[1] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 5); // _32
v_src[2] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 9); // _54
v_src[3] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 13); // _76
} else if (filter_index == 3) {
// 2 taps.
v_src[0] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 7); // _43
} else if (filter_index > 3) {
// 4 taps.
v_src[0] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 5); // _32
v_src[1] = _mm256_alignr_epi8(src_long_dup_hi, src_long_dup_lo, 9); // _54
}
return SumOnePassTaps<filter_index>(v_src, v_tap);
}
template <int filter_index>
__m256i SimpleHorizontalTaps(const __m256i* const src,
const __m256i* const v_tap) {
__m256i sum = SumHorizontalTaps<filter_index>(src, v_tap);
// Normally the Horizontal pass does the downshift in two passes:
// kInterRoundBitsHorizontal - 1 and then (kFilterBits -
// kInterRoundBitsHorizontal). Each one uses a rounding shift. Combining them
// requires adding the rounding offset from the skipped shift.
constexpr int first_shift_rounding_bit = 1 << (kInterRoundBitsHorizontal - 2);
sum = _mm256_add_epi16(sum, _mm256_set1_epi16(first_shift_rounding_bit));
sum = RightShiftWithRounding_S16(sum, kFilterBits - 1);
return _mm256_packus_epi16(sum, sum);
}
template <int filter_index>
__m256i HorizontalTaps8To16(const __m256i* const src,
const __m256i* const v_tap) {
const __m256i sum = SumHorizontalTaps<filter_index>(src, v_tap);
return RightShiftWithRounding_S16(sum, kInterRoundBitsHorizontal - 1);
}
// Filter 2xh sizes.
template <int num_taps, int filter_index, bool is_2d = false,
bool is_compound = false>
void FilterHorizontal(const uint8_t* src, const ptrdiff_t src_stride,
void* const dest, const ptrdiff_t pred_stride,
const int /*width*/, const int height,
const __m128i* const v_tap) {
auto* dest8 = static_cast<uint8_t*>(dest);
auto* dest16 = static_cast<uint16_t*>(dest);
// Horizontal passes only need to account for |num_taps| 2 and 4 when
// |width| <= 4.
assert(num_taps <= 4);
if (num_taps <= 4) {
if (!is_compound) {
int y = height;
if (is_2d) y -= 1;
do {
if (is_2d) {
const __m128i sum =
HorizontalTaps8To16_2x2<filter_index>(src, src_stride, v_tap);
Store4(&dest16[0], sum);
dest16 += pred_stride;
Store4(&dest16[0], _mm_srli_si128(sum, 8));
dest16 += pred_stride;
} else {
const __m128i sum =
SimpleHorizontalTaps2x2<filter_index>(src, src_stride, v_tap);
Store2(dest8, sum);
dest8 += pred_stride;
Store2(dest8, _mm_srli_si128(sum, 4));
dest8 += pred_stride;
}
src += src_stride << 1;
y -= 2;
} while (y != 0);
// The 2d filters have an odd |height| because the horizontal pass
// generates context for the vertical pass.
if (is_2d) {
assert(height % 2 == 1);
__m128i sum;
const __m128i input = LoadLo8(&src[2]);
if (filter_index == 3) {
// 03 04 04 05 05 06 06 07 ....
const __m128i v_src_43 =
_mm_srli_si128(_mm_unpacklo_epi8(input, input), 3);
sum = _mm_maddubs_epi16(v_src_43, v_tap[0]); // k4k3
} else {
// 02 03 03 04 04 05 05 06 06 07 ....
const __m128i v_src_32 =
_mm_srli_si128(_mm_unpacklo_epi8(input, input), 1);
// 04 05 05 06 06 07 07 08 ...
const __m128i v_src_54 = _mm_srli_si128(v_src_32, 4);
const __m128i v_madd_32 =
_mm_maddubs_epi16(v_src_32, v_tap[0]); // k3k2
const __m128i v_madd_54 =
_mm_maddubs_epi16(v_src_54, v_tap[1]); // k5k4
sum = _mm_add_epi16(v_madd_54, v_madd_32);
}
sum = RightShiftWithRounding_S16(sum, kInterRoundBitsHorizontal - 1);
Store4(dest16, sum);
}
}
}
}
// Filter widths >= 4.
template <int num_taps, int filter_index, bool is_2d = false,
bool is_compound = false>
void FilterHorizontal(const uint8_t* src, const ptrdiff_t src_stride,
void* const dest, const ptrdiff_t pred_stride,
const int width, const int height,
const __m256i* const v_tap) {
auto* dest8 = static_cast<uint8_t*>(dest);
auto* dest16 = static_cast<uint16_t*>(dest);
if (width >= 32) {
int y = height;
do {
int x = 0;
do {
if (is_2d || is_compound) {
// Load into 2 128 bit lanes.
const __m256i src_long =
SetrM128i(LoadUnaligned16(&src[x]), LoadUnaligned16(&src[x + 8]));
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
const __m256i src_long2 = SetrM128i(LoadUnaligned16(&src[x + 16]),
LoadUnaligned16(&src[x + 24]));
const __m256i result2 =
HorizontalTaps8To16<filter_index>(&src_long2, v_tap);
if (is_2d) {
StoreAligned32(&dest16[x], result);
StoreAligned32(&dest16[x + 16], result2);
} else {
StoreUnaligned32(&dest16[x], result);
StoreUnaligned32(&dest16[x + 16], result2);
}
} else {
// Load src used to calculate dest8[7:0] and dest8[23:16].
const __m256i src_long = LoadUnaligned32(&src[x]);
const __m256i result =
SimpleHorizontalTaps<filter_index>(&src_long, v_tap);
// Load src used to calculate dest8[15:8] and dest8[31:24].
const __m256i src_long2 = LoadUnaligned32(&src[x + 8]);
const __m256i result2 =
SimpleHorizontalTaps<filter_index>(&src_long2, v_tap);
// Combine results and store.
StoreUnaligned32(&dest8[x], _mm256_unpacklo_epi64(result, result2));
}
x += 32;
} while (x < width);
src += src_stride;
dest8 += pred_stride;
dest16 += pred_stride;
} while (--y != 0);
} else if (width == 16) {
int y = height;
if (is_2d) y -= 1;
do {
if (is_2d || is_compound) {
// Load into 2 128 bit lanes.
const __m256i src_long =
SetrM128i(LoadUnaligned16(&src[0]), LoadUnaligned16(&src[8]));
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
const __m256i src_long2 =
SetrM128i(LoadUnaligned16(&src[src_stride]),
LoadUnaligned16(&src[8 + src_stride]));
const __m256i result2 =
HorizontalTaps8To16<filter_index>(&src_long2, v_tap);
if (is_2d) {
StoreAligned32(&dest16[0], result);
StoreAligned32(&dest16[pred_stride], result2);
} else {
StoreUnaligned32(&dest16[0], result);
StoreUnaligned32(&dest16[pred_stride], result2);
}
} else {
// Load into 2 128 bit lanes.
const __m256i src_long = SetrM128i(LoadUnaligned16(&src[0]),
LoadUnaligned16(&src[src_stride]));
const __m256i result =
SimpleHorizontalTaps<filter_index>(&src_long, v_tap);
const __m256i src_long2 = SetrM128i(
LoadUnaligned16(&src[8]), LoadUnaligned16(&src[8 + src_stride]));
const __m256i result2 =
SimpleHorizontalTaps<filter_index>(&src_long2, v_tap);
const __m256i packed_result = _mm256_unpacklo_epi64(result, result2);
StoreUnaligned16(&dest8[0], _mm256_castsi256_si128(packed_result));
StoreUnaligned16(&dest8[pred_stride],
_mm256_extracti128_si256(packed_result, 1));
}
src += src_stride * 2;
dest8 += pred_stride * 2;
dest16 += pred_stride * 2;
y -= 2;
} while (y != 0);
// The 2d filters have an odd |height| during the horizontal pass, so
// filter the remaining row.
if (is_2d) {
const __m256i src_long =
SetrM128i(LoadUnaligned16(&src[0]), LoadUnaligned16(&src[8]));
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
StoreAligned32(&dest16[0], result);
}
} else if (width == 8) {
int y = height;
if (is_2d) y -= 1;
do {
// Load into 2 128 bit lanes.
const __m128i this_row = LoadUnaligned16(&src[0]);
const __m128i next_row = LoadUnaligned16(&src[src_stride]);
const __m256i src_long = SetrM128i(this_row, next_row);
if (is_2d || is_compound) {
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
if (is_2d) {
StoreAligned16(&dest16[0], _mm256_castsi256_si128(result));
StoreAligned16(&dest16[pred_stride],
_mm256_extracti128_si256(result, 1));
} else {
StoreUnaligned16(&dest16[0], _mm256_castsi256_si128(result));
StoreUnaligned16(&dest16[pred_stride],
_mm256_extracti128_si256(result, 1));
}
} else {
const __m128i this_row = LoadUnaligned16(&src[0]);
const __m128i next_row = LoadUnaligned16(&src[src_stride]);
// Load into 2 128 bit lanes.
const __m256i src_long = SetrM128i(this_row, next_row);
const __m256i result =
SimpleHorizontalTaps<filter_index>(&src_long, v_tap);
StoreLo8(&dest8[0], _mm256_castsi256_si128(result));
StoreLo8(&dest8[pred_stride], _mm256_extracti128_si256(result, 1));
}
src += src_stride * 2;
dest8 += pred_stride * 2;
dest16 += pred_stride * 2;
y -= 2;
} while (y != 0);
// The 2d filters have an odd |height| during the horizontal pass, so
// filter the remaining row.
if (is_2d) {
const __m256i src_long = _mm256_castsi128_si256(LoadUnaligned16(&src[0]));
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
StoreAligned16(&dest16[0], _mm256_castsi256_si128(result));
}
} else { // width == 4
int y = height;
if (is_2d) y -= 1;
do {
// Load into 2 128 bit lanes.
const __m128i this_row = LoadUnaligned16(&src[0]);
const __m128i next_row = LoadUnaligned16(&src[src_stride]);
const __m256i src_long = SetrM128i(this_row, next_row);
if (is_2d || is_compound) {
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
StoreLo8(&dest16[0], _mm256_castsi256_si128(result));
StoreLo8(&dest16[pred_stride], _mm256_extracti128_si256(result, 1));
} else {
const __m128i this_row = LoadUnaligned16(&src[0]);
const __m128i next_row = LoadUnaligned16(&src[src_stride]);
// Load into 2 128 bit lanes.
const __m256i src_long = SetrM128i(this_row, next_row);
const __m256i result =
SimpleHorizontalTaps<filter_index>(&src_long, v_tap);
Store4(&dest8[0], _mm256_castsi256_si128(result));
Store4(&dest8[pred_stride], _mm256_extracti128_si256(result, 1));
}
src += src_stride * 2;
dest8 += pred_stride * 2;
dest16 += pred_stride * 2;
y -= 2;
} while (y != 0);
// The 2d filters have an odd |height| during the horizontal pass, so
// filter the remaining row.
if (is_2d) {
const __m256i src_long = _mm256_castsi128_si256(LoadUnaligned16(&src[0]));
const __m256i result =
HorizontalTaps8To16<filter_index>(&src_long, v_tap);
StoreLo8(&dest16[0], _mm256_castsi256_si128(result));
}
}
}
template <int num_taps, bool is_2d_vertical = false>
LIBGAV1_ALWAYS_INLINE void SetupTaps(const __m128i* const filter,
__m256i* v_tap) {
if (num_taps == 8) {
if (is_2d_vertical) {
v_tap[0] = _mm256_broadcastd_epi32(*filter); // k1k0
v_tap[1] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 4)); // k3k2
v_tap[2] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 8)); // k5k4
v_tap[3] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 12)); // k7k6
} else {
v_tap[0] = _mm256_broadcastw_epi16(*filter); // k1k0
v_tap[1] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 2)); // k3k2
v_tap[2] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 4)); // k5k4
v_tap[3] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 6)); // k7k6
}
} else if (num_taps == 6) {
if (is_2d_vertical) {
v_tap[0] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 2)); // k2k1
v_tap[1] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 6)); // k4k3
v_tap[2] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 10)); // k6k5
} else {
v_tap[0] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 1)); // k2k1
v_tap[1] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 3)); // k4k3
v_tap[2] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 5)); // k6k5
}
} else if (num_taps == 4) {
if (is_2d_vertical) {
v_tap[0] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 4)); // k3k2
v_tap[1] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 8)); // k5k4
} else {
v_tap[0] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 2)); // k3k2
v_tap[1] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 4)); // k5k4
}
} else { // num_taps == 2
if (is_2d_vertical) {
v_tap[0] = _mm256_broadcastd_epi32(_mm_srli_si128(*filter, 6)); // k4k3
} else {
v_tap[0] = _mm256_broadcastw_epi16(_mm_srli_si128(*filter, 3)); // k4k3
}
}
}
template <int num_taps, bool is_compound>
__m256i SimpleSum2DVerticalTaps(const __m256i* const src,
const __m256i* const taps) {
__m256i sum_lo =
_mm256_madd_epi16(_mm256_unpacklo_epi16(src[0], src[1]), taps[0]);
__m256i sum_hi =
_mm256_madd_epi16(_mm256_unpackhi_epi16(src[0], src[1]), taps[0]);
if (num_taps >= 4) {
__m256i madd_lo =
_mm256_madd_epi16(_mm256_unpacklo_epi16(src[2], src[3]), taps[1]);
__m256i madd_hi =
_mm256_madd_epi16(_mm256_unpackhi_epi16(src[2], src[3]), taps[1]);
sum_lo = _mm256_add_epi32(sum_lo, madd_lo);
sum_hi = _mm256_add_epi32(sum_hi, madd_hi);
if (num_taps >= 6) {
madd_lo =
_mm256_madd_epi16(_mm256_unpacklo_epi16(src[4], src[5]), taps[2]);
madd_hi =
_mm256_madd_epi16(_mm256_unpackhi_epi16(src[4], src[5]), taps[2]);
sum_lo = _mm256_add_epi32(sum_lo, madd_lo);
sum_hi = _mm256_add_epi32(sum_hi, madd_hi);
if (num_taps == 8) {
madd_lo =
_mm256_madd_epi16(_mm256_unpacklo_epi16(src[6], src[7]), taps[3]);
madd_hi =
_mm256_madd_epi16(_mm256_unpackhi_epi16(src[6], src[7]), taps[3]);
sum_lo = _mm256_add_epi32(sum_lo, madd_lo);
sum_hi = _mm256_add_epi32(sum_hi, madd_hi);
}
}
}
if (is_compound) {
return _mm256_packs_epi32(
RightShiftWithRounding_S32(sum_lo, kInterRoundBitsCompoundVertical - 1),
RightShiftWithRounding_S32(sum_hi,
kInterRoundBitsCompoundVertical - 1));
}
return _mm256_packs_epi32(
RightShiftWithRounding_S32(sum_lo, kInterRoundBitsVertical - 1),
RightShiftWithRounding_S32(sum_hi, kInterRoundBitsVertical - 1));
}
template <int num_taps, bool is_compound = false>
void Filter2DVertical16xH(const uint16_t* src, void* const dst,
const ptrdiff_t dst_stride, const int width,
const int height, const __m256i* const taps) {
assert(width >= 8);
constexpr int next_row = num_taps - 1;
// The Horizontal pass uses |width| as |stride| for the intermediate buffer.
const ptrdiff_t src_stride = width;
auto* dst8 = static_cast<uint8_t*>(dst);
auto* dst16 = static_cast<uint16_t*>(dst);
int x = 0;
do {
__m256i srcs[8];
const uint16_t* src_x = src + x;
srcs[0] = LoadAligned32(src_x);
src_x += src_stride;
if (num_taps >= 4) {
srcs[1] = LoadAligned32(src_x);
src_x += src_stride;
srcs[2] = LoadAligned32(src_x);
src_x += src_stride;
if (num_taps >= 6) {
srcs[3] = LoadAligned32(src_x);
src_x += src_stride;
srcs[4] = LoadAligned32(src_x);
src_x += src_stride;
if (num_taps == 8) {
srcs[5] = LoadAligned32(src_x);
src_x += src_stride;
srcs[6] = LoadAligned32(src_x);
src_x += src_stride;
}
}
}
auto* dst8_x = dst8 + x;
auto* dst16_x = dst16 + x;
int y = height;
do {
srcs[next_row] = LoadAligned32(src_x);
src_x += src_stride;
const __m256i sum =
SimpleSum2DVerticalTaps<num_taps, is_compound>(srcs, taps);
if (is_compound) {
StoreUnaligned32(dst16_x, sum);
dst16_x += dst_stride;
} else {
const __m128i packed_sum = _mm_packus_epi16(
_mm256_castsi256_si128(sum), _mm256_extracti128_si256(sum, 1));
StoreUnaligned16(dst8_x, packed_sum);
dst8_x += dst_stride;
}
srcs[0] = srcs[1];
if (num_taps >= 4) {
srcs[1] = srcs[2];
srcs[2] = srcs[3];
if (num_taps >= 6) {
srcs[3] = srcs[4];
srcs[4] = srcs[5];
if (num_taps == 8) {
srcs[5] = srcs[6];
srcs[6] = srcs[7];
}
}
}
} while (--y != 0);
x += 16;
} while (x < width);
}
template <bool is_2d = false, bool is_compound = false>
LIBGAV1_ALWAYS_INLINE void DoHorizontalPass2xH(
const uint8_t* const src, const ptrdiff_t src_stride, void* const dst,
const ptrdiff_t dst_stride, const int width, const int height,
const int filter_id, const int filter_index) {
assert(filter_id != 0);
__m128i v_tap[4];
const __m128i v_horizontal_filter =
LoadLo8(kHalfSubPixelFilters[filter_index][filter_id]);
if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_horizontal_filter, v_tap);
FilterHorizontal<4, 4, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else if (filter_index == 5) { // 4 tap.
SetupTaps<4>(&v_horizontal_filter, v_tap);
FilterHorizontal<4, 5, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else { // 2 tap.
SetupTaps<2>(&v_horizontal_filter, v_tap);
FilterHorizontal<2, 3, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
}
}
template <bool is_2d = false, bool is_compound = false>
LIBGAV1_ALWAYS_INLINE void DoHorizontalPass(
const uint8_t* const src, const ptrdiff_t src_stride, void* const dst,
const ptrdiff_t dst_stride, const int width, const int height,
const int filter_id, const int filter_index) {
assert(filter_id != 0);
__m256i v_tap[4];
const __m128i v_horizontal_filter =
LoadLo8(kHalfSubPixelFilters[filter_index][filter_id]);
if (filter_index == 2) { // 8 tap.
SetupTaps<8>(&v_horizontal_filter, v_tap);
FilterHorizontal<8, 2, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else if (filter_index == 1) { // 6 tap.
SetupTaps<6>(&v_horizontal_filter, v_tap);
FilterHorizontal<6, 1, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else if (filter_index == 0) { // 6 tap.
SetupTaps<6>(&v_horizontal_filter, v_tap);
FilterHorizontal<6, 0, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_horizontal_filter, v_tap);
FilterHorizontal<4, 4, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else if (filter_index == 5) { // 4 tap.
SetupTaps<4>(&v_horizontal_filter, v_tap);
FilterHorizontal<4, 5, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
} else { // 2 tap.
SetupTaps<2>(&v_horizontal_filter, v_tap);
FilterHorizontal<2, 3, is_2d, is_compound>(src, src_stride, dst, dst_stride,
width, height, v_tap);
}
}
void Convolve2D_AVX2(const void* const reference,
const ptrdiff_t reference_stride,
const int horizontal_filter_index,
const int vertical_filter_index,
const int horizontal_filter_id,
const int vertical_filter_id, const int width,
const int height, void* prediction,
const ptrdiff_t pred_stride) {
const int horiz_filter_index = GetFilterIndex(horizontal_filter_index, width);
const int vert_filter_index = GetFilterIndex(vertical_filter_index, height);
const int vertical_taps = GetNumTapsInFilter(vert_filter_index);
// The output of the horizontal filter is guaranteed to fit in 16 bits.
alignas(32) uint16_t
intermediate_result[kMaxSuperBlockSizeInPixels *
(kMaxSuperBlockSizeInPixels + kSubPixelTaps - 1)];
const int intermediate_height = height + vertical_taps - 1;
const ptrdiff_t src_stride = reference_stride;
const auto* src = static_cast<const uint8_t*>(reference) -
(vertical_taps / 2 - 1) * src_stride - kHorizontalOffset;
if (width > 2) {
DoHorizontalPass</*is_2d=*/true>(src, src_stride, intermediate_result,
width, width, intermediate_height,
horizontal_filter_id, horiz_filter_index);
} else {
// Use non avx2 version for smaller widths.
DoHorizontalPass2xH</*is_2d=*/true>(
src, src_stride, intermediate_result, width, width, intermediate_height,
horizontal_filter_id, horiz_filter_index);
}
// Vertical filter.
auto* dest = static_cast<uint8_t*>(prediction);
const ptrdiff_t dest_stride = pred_stride;
assert(vertical_filter_id != 0);
const __m128i v_filter =
LoadLo8(kHalfSubPixelFilters[vert_filter_index][vertical_filter_id]);
// Use 256 bits for width > 8.
if (width > 8) {
__m256i taps_256[4];
const __m128i v_filter_ext = _mm_cvtepi8_epi16(v_filter);
if (vertical_taps == 8) {
SetupTaps<8, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<8>(intermediate_result, dest, dest_stride, width,
height, taps_256);
} else if (vertical_taps == 6) {
SetupTaps<6, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<6>(intermediate_result, dest, dest_stride, width,
height, taps_256);
} else if (vertical_taps == 4) {
SetupTaps<4, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<4>(intermediate_result, dest, dest_stride, width,
height, taps_256);
} else { // |vertical_taps| == 2
SetupTaps<2, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<2>(intermediate_result, dest, dest_stride, width,
height, taps_256);
}
} else { // width <= 8
__m128i taps[4];
// Use 128 bit code.
if (vertical_taps == 8) {
SetupTaps<8, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 2) {
Filter2DVertical2xH<8>(intermediate_result, dest, dest_stride, height,
taps);
} else if (width == 4) {
Filter2DVertical4xH<8>(intermediate_result, dest, dest_stride, height,
taps);
} else {
Filter2DVertical<8>(intermediate_result, dest, dest_stride, width,
height, taps);
}
} else if (vertical_taps == 6) {
SetupTaps<6, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 2) {
Filter2DVertical2xH<6>(intermediate_result, dest, dest_stride, height,
taps);
} else if (width == 4) {
Filter2DVertical4xH<6>(intermediate_result, dest, dest_stride, height,
taps);
} else {
Filter2DVertical<6>(intermediate_result, dest, dest_stride, width,
height, taps);
}
} else if (vertical_taps == 4) {
SetupTaps<4, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 2) {
Filter2DVertical2xH<4>(intermediate_result, dest, dest_stride, height,
taps);
} else if (width == 4) {
Filter2DVertical4xH<4>(intermediate_result, dest, dest_stride, height,
taps);
} else {
Filter2DVertical<4>(intermediate_result, dest, dest_stride, width,
height, taps);
}
} else { // |vertical_taps| == 2
SetupTaps<2, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 2) {
Filter2DVertical2xH<2>(intermediate_result, dest, dest_stride, height,
taps);
} else if (width == 4) {
Filter2DVertical4xH<2>(intermediate_result, dest, dest_stride, height,
taps);
} else {
Filter2DVertical<2>(intermediate_result, dest, dest_stride, width,
height, taps);
}
}
}
}
// The 1D compound shift is always |kInterRoundBitsHorizontal|, even for 1D
// Vertical calculations.
__m256i Compound1DShift(const __m256i sum) {
return RightShiftWithRounding_S16(sum, kInterRoundBitsHorizontal - 1);
}
template <int filter_index, bool unpack_high = false>
__m256i SumVerticalTaps(const __m256i* const srcs, const __m256i* const v_tap) {
__m256i v_src[4];
if (!unpack_high) {
if (filter_index < 2) {
// 6 taps.
v_src[0] = _mm256_unpacklo_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpacklo_epi8(srcs[2], srcs[3]);
v_src[2] = _mm256_unpacklo_epi8(srcs[4], srcs[5]);
} else if (filter_index == 2) {
// 8 taps.
v_src[0] = _mm256_unpacklo_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpacklo_epi8(srcs[2], srcs[3]);
v_src[2] = _mm256_unpacklo_epi8(srcs[4], srcs[5]);
v_src[3] = _mm256_unpacklo_epi8(srcs[6], srcs[7]);
} else if (filter_index == 3) {
// 2 taps.
v_src[0] = _mm256_unpacklo_epi8(srcs[0], srcs[1]);
} else if (filter_index > 3) {
// 4 taps.
v_src[0] = _mm256_unpacklo_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpacklo_epi8(srcs[2], srcs[3]);
}
} else {
if (filter_index < 2) {
// 6 taps.
v_src[0] = _mm256_unpackhi_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpackhi_epi8(srcs[2], srcs[3]);
v_src[2] = _mm256_unpackhi_epi8(srcs[4], srcs[5]);
} else if (filter_index == 2) {
// 8 taps.
v_src[0] = _mm256_unpackhi_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpackhi_epi8(srcs[2], srcs[3]);
v_src[2] = _mm256_unpackhi_epi8(srcs[4], srcs[5]);
v_src[3] = _mm256_unpackhi_epi8(srcs[6], srcs[7]);
} else if (filter_index == 3) {
// 2 taps.
v_src[0] = _mm256_unpackhi_epi8(srcs[0], srcs[1]);
} else if (filter_index > 3) {
// 4 taps.
v_src[0] = _mm256_unpackhi_epi8(srcs[0], srcs[1]);
v_src[1] = _mm256_unpackhi_epi8(srcs[2], srcs[3]);
}
}
return SumOnePassTaps<filter_index>(v_src, v_tap);
}
template <int filter_index, bool is_compound = false>
void FilterVertical32xH(const uint8_t* src, const ptrdiff_t src_stride,
void* const dst, const ptrdiff_t dst_stride,
const int width, const int height,
const __m256i* const v_tap) {
const int num_taps = GetNumTapsInFilter(filter_index);
const int next_row = num_taps - 1;
auto* dst8 = static_cast<uint8_t*>(dst);
auto* dst16 = static_cast<uint16_t*>(dst);
assert(width >= 32);
int x = 0;
do {
const uint8_t* src_x = src + x;
__m256i srcs[8];
srcs[0] = LoadUnaligned32(src_x);
src_x += src_stride;
if (num_taps >= 4) {
srcs[1] = LoadUnaligned32(src_x);
src_x += src_stride;
srcs[2] = LoadUnaligned32(src_x);
src_x += src_stride;
if (num_taps >= 6) {
srcs[3] = LoadUnaligned32(src_x);
src_x += src_stride;
srcs[4] = LoadUnaligned32(src_x);
src_x += src_stride;
if (num_taps == 8) {
srcs[5] = LoadUnaligned32(src_x);
src_x += src_stride;
srcs[6] = LoadUnaligned32(src_x);
src_x += src_stride;
}
}
}
auto* dst8_x = dst8 + x;
auto* dst16_x = dst16 + x;
int y = height;
do {
srcs[next_row] = LoadUnaligned32(src_x);
src_x += src_stride;
const __m256i sums = SumVerticalTaps<filter_index>(srcs, v_tap);
const __m256i sums_hi =
SumVerticalTaps<filter_index, /*unpack_high=*/true>(srcs, v_tap);
if (is_compound) {
const __m256i results =
Compound1DShift(_mm256_permute2x128_si256(sums, sums_hi, 0x20));
const __m256i results_hi =
Compound1DShift(_mm256_permute2x128_si256(sums, sums_hi, 0x31));
StoreUnaligned32(dst16_x, results);
StoreUnaligned32(dst16_x + 16, results_hi);
dst16_x += dst_stride;
} else {
const __m256i results =
RightShiftWithRounding_S16(sums, kFilterBits - 1);
const __m256i results_hi =
RightShiftWithRounding_S16(sums_hi, kFilterBits - 1);
const __m256i packed_results = _mm256_packus_epi16(results, results_hi);
StoreUnaligned32(dst8_x, packed_results);
dst8_x += dst_stride;
}
srcs[0] = srcs[1];
if (num_taps >= 4) {
srcs[1] = srcs[2];
srcs[2] = srcs[3];
if (num_taps >= 6) {
srcs[3] = srcs[4];
srcs[4] = srcs[5];
if (num_taps == 8) {
srcs[5] = srcs[6];
srcs[6] = srcs[7];
}
}
}
} while (--y != 0);
x += 32;
} while (x < width);
}
template <int filter_index, bool is_compound = false>
void FilterVertical16xH(const uint8_t* src, const ptrdiff_t src_stride,
void* const dst, const ptrdiff_t dst_stride,
const int /*width*/, const int height,
const __m256i* const v_tap) {
const int num_taps = GetNumTapsInFilter(filter_index);
const int next_row = num_taps;
auto* dst8 = static_cast<uint8_t*>(dst);
auto* dst16 = static_cast<uint16_t*>(dst);
const uint8_t* src_x = src;
__m256i srcs[8 + 1];
// The upper 128 bits hold the filter data for the next row.
srcs[0] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
if (num_taps >= 4) {
srcs[1] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[0] =
_mm256_inserti128_si256(srcs[0], _mm256_castsi256_si128(srcs[1]), 1);
srcs[2] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[1] =
_mm256_inserti128_si256(srcs[1], _mm256_castsi256_si128(srcs[2]), 1);
if (num_taps >= 6) {
srcs[3] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[2] =
_mm256_inserti128_si256(srcs[2], _mm256_castsi256_si128(srcs[3]), 1);
srcs[4] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[3] =
_mm256_inserti128_si256(srcs[3], _mm256_castsi256_si128(srcs[4]), 1);
if (num_taps == 8) {
srcs[5] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[4] = _mm256_inserti128_si256(srcs[4],
_mm256_castsi256_si128(srcs[5]), 1);
srcs[6] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[5] = _mm256_inserti128_si256(srcs[5],
_mm256_castsi256_si128(srcs[6]), 1);
}
}
}
int y = height;
do {
srcs[next_row - 1] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[next_row - 2] = _mm256_inserti128_si256(
srcs[next_row - 2], _mm256_castsi256_si128(srcs[next_row - 1]), 1);
srcs[next_row] = _mm256_castsi128_si256(LoadUnaligned16(src_x));
src_x += src_stride;
srcs[next_row - 1] = _mm256_inserti128_si256(
srcs[next_row - 1], _mm256_castsi256_si128(srcs[next_row]), 1);
const __m256i sums = SumVerticalTaps<filter_index>(srcs, v_tap);
const __m256i sums_hi =
SumVerticalTaps<filter_index, /*unpack_high=*/true>(srcs, v_tap);
if (is_compound) {
const __m256i results =
Compound1DShift(_mm256_permute2x128_si256(sums, sums_hi, 0x20));
const __m256i results_hi =
Compound1DShift(_mm256_permute2x128_si256(sums, sums_hi, 0x31));
StoreUnaligned32(dst16, results);
StoreUnaligned32(dst16 + dst_stride, results_hi);
dst16 += dst_stride << 1;
} else {
const __m256i results = RightShiftWithRounding_S16(sums, kFilterBits - 1);
const __m256i results_hi =
RightShiftWithRounding_S16(sums_hi, kFilterBits - 1);
const __m256i packed_results = _mm256_packus_epi16(results, results_hi);
const __m128i this_dst = _mm256_castsi256_si128(packed_results);
const auto next_dst = _mm256_extracti128_si256(packed_results, 1);
StoreUnaligned16(dst8, this_dst);
StoreUnaligned16(dst8 + dst_stride, next_dst);
dst8 += dst_stride << 1;
}
srcs[0] = srcs[2];
if (num_taps >= 4) {
srcs[1] = srcs[3];
srcs[2] = srcs[4];
if (num_taps >= 6) {
srcs[3] = srcs[5];
srcs[4] = srcs[6];
if (num_taps == 8) {
srcs[5] = srcs[7];
srcs[6] = srcs[8];
}
}
}
y -= 2;
} while (y != 0);
}
template <int filter_index, bool is_compound = false>
void FilterVertical8xH(const uint8_t* src, const ptrdiff_t src_stride,
void* const dst, const ptrdiff_t dst_stride,
const int /*width*/, const int height,
const __m256i* const v_tap) {
const int num_taps = GetNumTapsInFilter(filter_index);
const int next_row = num_taps;
auto* dst8 = static_cast<uint8_t*>(dst);
auto* dst16 = static_cast<uint16_t*>(dst);
const uint8_t* src_x = src;
__m256i srcs[8 + 1];
// The upper 128 bits hold the filter data for the next row.
srcs[0] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
if (num_taps >= 4) {
srcs[1] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[0] =
_mm256_inserti128_si256(srcs[0], _mm256_castsi256_si128(srcs[1]), 1);
srcs[2] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[1] =
_mm256_inserti128_si256(srcs[1], _mm256_castsi256_si128(srcs[2]), 1);
if (num_taps >= 6) {
srcs[3] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[2] =
_mm256_inserti128_si256(srcs[2], _mm256_castsi256_si128(srcs[3]), 1);
srcs[4] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[3] =
_mm256_inserti128_si256(srcs[3], _mm256_castsi256_si128(srcs[4]), 1);
if (num_taps == 8) {
srcs[5] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[4] = _mm256_inserti128_si256(srcs[4],
_mm256_castsi256_si128(srcs[5]), 1);
srcs[6] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[5] = _mm256_inserti128_si256(srcs[5],
_mm256_castsi256_si128(srcs[6]), 1);
}
}
}
int y = height;
do {
srcs[next_row - 1] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[next_row - 2] = _mm256_inserti128_si256(
srcs[next_row - 2], _mm256_castsi256_si128(srcs[next_row - 1]), 1);
srcs[next_row] = _mm256_castsi128_si256(LoadLo8(src_x));
src_x += src_stride;
srcs[next_row - 1] = _mm256_inserti128_si256(
srcs[next_row - 1], _mm256_castsi256_si128(srcs[next_row]), 1);
const __m256i sums = SumVerticalTaps<filter_index>(srcs, v_tap);
if (is_compound) {
const __m256i results = Compound1DShift(sums);
const __m128i this_dst = _mm256_castsi256_si128(results);
const auto next_dst = _mm256_extracti128_si256(results, 1);
StoreUnaligned16(dst16, this_dst);
StoreUnaligned16(dst16 + dst_stride, next_dst);
dst16 += dst_stride << 1;
} else {
const __m256i results = RightShiftWithRounding_S16(sums, kFilterBits - 1);
const __m256i packed_results = _mm256_packus_epi16(results, results);
const __m128i this_dst = _mm256_castsi256_si128(packed_results);
const auto next_dst = _mm256_extracti128_si256(packed_results, 1);
StoreLo8(dst8, this_dst);
StoreLo8(dst8 + dst_stride, next_dst);
dst8 += dst_stride << 1;
}
srcs[0] = srcs[2];
if (num_taps >= 4) {
srcs[1] = srcs[3];
srcs[2] = srcs[4];
if (num_taps >= 6) {
srcs[3] = srcs[5];
srcs[4] = srcs[6];
if (num_taps == 8) {
srcs[5] = srcs[7];
srcs[6] = srcs[8];
}
}
}
y -= 2;
} while (y != 0);
}
template <int filter_index, bool is_compound = false>
void FilterVertical8xH(const uint8_t* src, const ptrdiff_t src_stride,
void* const dst, const ptrdiff_t dst_stride,
const int /*width*/, const int height,
const __m128i* const v_tap) {
const int num_taps = GetNumTapsInFilter(filter_index);
const int next_row = num_taps - 1;
auto* dst8 = static_cast<uint8_t*>(dst);
auto* dst16 = static_cast<uint16_t*>(dst);
const uint8_t* src_x = src;
__m128i srcs[8];
srcs[0] = LoadLo8(src_x);
src_x += src_stride;
if (num_taps >= 4) {
srcs[1] = LoadLo8(src_x);
src_x += src_stride;
srcs[2] = LoadLo8(src_x);
src_x += src_stride;
if (num_taps >= 6) {
srcs[3] = LoadLo8(src_x);
src_x += src_stride;
srcs[4] = LoadLo8(src_x);
src_x += src_stride;
if (num_taps == 8) {
srcs[5] = LoadLo8(src_x);
src_x += src_stride;
srcs[6] = LoadLo8(src_x);
src_x += src_stride;
}
}
}
int y = height;
do {
srcs[next_row] = LoadLo8(src_x);
src_x += src_stride;
const __m128i sums = SumVerticalTaps<filter_index>(srcs, v_tap);
if (is_compound) {
const __m128i results = Compound1DShift(sums);
StoreUnaligned16(dst16, results);
dst16 += dst_stride;
} else {
const __m128i results = RightShiftWithRounding_S16(sums, kFilterBits - 1);
StoreLo8(dst8, _mm_packus_epi16(results, results));
dst8 += dst_stride;
}
srcs[0] = srcs[1];
if (num_taps >= 4) {
srcs[1] = srcs[2];
srcs[2] = srcs[3];
if (num_taps >= 6) {
srcs[3] = srcs[4];
srcs[4] = srcs[5];
if (num_taps == 8) {
srcs[5] = srcs[6];
srcs[6] = srcs[7];
}
}
}
} while (--y != 0);
}
void ConvolveVertical_AVX2(const void* const reference,
const ptrdiff_t reference_stride,
const int /*horizontal_filter_index*/,
const int vertical_filter_index,
const int /*horizontal_filter_id*/,
const int vertical_filter_id, const int width,
const int height, void* prediction,
const ptrdiff_t pred_stride) {
const int filter_index = GetFilterIndex(vertical_filter_index, height);
const int vertical_taps = GetNumTapsInFilter(filter_index);
const ptrdiff_t src_stride = reference_stride;
const auto* src = static_cast<const uint8_t*>(reference) -
(vertical_taps / 2 - 1) * src_stride;
auto* dest = static_cast<uint8_t*>(prediction);
const ptrdiff_t dest_stride = pred_stride;
assert(vertical_filter_id != 0);
const __m128i v_filter =
LoadLo8(kHalfSubPixelFilters[filter_index][vertical_filter_id]);
// Use 256 bits for width > 4.
if (width > 4) {
__m256i taps_256[4];
if (filter_index < 2) { // 6 tap.
SetupTaps<6>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<0>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else if (width == 16) {
FilterVertical16xH<0>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else {
FilterVertical32xH<0>(src, src_stride, dest, dest_stride, width, height,
taps_256);
}
} else if (filter_index == 2) { // 8 tap.
SetupTaps<8>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<2>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else if (width == 16) {
FilterVertical16xH<2>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else {
FilterVertical32xH<2>(src, src_stride, dest, dest_stride, width, height,
taps_256);
}
} else if (filter_index == 3) { // 2 tap.
SetupTaps<2>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<3>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else if (width == 16) {
FilterVertical16xH<3>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else {
FilterVertical32xH<3>(src, src_stride, dest, dest_stride, width, height,
taps_256);
}
} else if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<4>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else if (width == 16) {
FilterVertical16xH<4>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else {
FilterVertical32xH<4>(src, src_stride, dest, dest_stride, width, height,
taps_256);
}
} else {
SetupTaps<4>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<5>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else if (width == 16) {
FilterVertical16xH<5>(src, src_stride, dest, dest_stride, width, height,
taps_256);
} else {
FilterVertical32xH<5>(src, src_stride, dest, dest_stride, width, height,
taps_256);
}
}
} else { // width <= 8
// Use 128 bit code.
__m128i taps[4];
if (filter_index < 2) { // 6 tap.
SetupTaps<6>(&v_filter, taps);
if (width == 2) {
FilterVertical2xH<6, 0>(src, src_stride, dest, dest_stride, height,
taps);
} else {
FilterVertical4xH<6, 0>(src, src_stride, dest, dest_stride, height,
taps);
}
} else if (filter_index == 2) { // 8 tap.
SetupTaps<8>(&v_filter, taps);
if (width == 2) {
FilterVertical2xH<8, 2>(src, src_stride, dest, dest_stride, height,
taps);
} else {
FilterVertical4xH<8, 2>(src, src_stride, dest, dest_stride, height,
taps);
}
} else if (filter_index == 3) { // 2 tap.
SetupTaps<2>(&v_filter, taps);
if (width == 2) {
FilterVertical2xH<2, 3>(src, src_stride, dest, dest_stride, height,
taps);
} else {
FilterVertical4xH<2, 3>(src, src_stride, dest, dest_stride, height,
taps);
}
} else if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_filter, taps);
if (width == 2) {
FilterVertical2xH<4, 4>(src, src_stride, dest, dest_stride, height,
taps);
} else {
FilterVertical4xH<4, 4>(src, src_stride, dest, dest_stride, height,
taps);
}
} else {
SetupTaps<4>(&v_filter, taps);
if (width == 2) {
FilterVertical2xH<4, 5>(src, src_stride, dest, dest_stride, height,
taps);
} else {
FilterVertical4xH<4, 5>(src, src_stride, dest, dest_stride, height,
taps);
}
}
}
}
void ConvolveCompoundVertical_AVX2(
const void* const reference, const ptrdiff_t reference_stride,
const int /*horizontal_filter_index*/, const int vertical_filter_index,
const int /*horizontal_filter_id*/, const int vertical_filter_id,
const int width, const int height, void* prediction,
const ptrdiff_t /*pred_stride*/) {
const int filter_index = GetFilterIndex(vertical_filter_index, height);
const int vertical_taps = GetNumTapsInFilter(filter_index);
const ptrdiff_t src_stride = reference_stride;
const auto* src = static_cast<const uint8_t*>(reference) -
(vertical_taps / 2 - 1) * src_stride;
auto* dest = static_cast<uint8_t*>(prediction);
const ptrdiff_t dest_stride = width;
assert(vertical_filter_id != 0);
const __m128i v_filter =
LoadLo8(kHalfSubPixelFilters[filter_index][vertical_filter_id]);
// Use 256 bits for width > 4.
if (width > 4) {
__m256i taps_256[4];
if (filter_index < 2) { // 6 tap.
SetupTaps<6>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<0, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else if (width == 16) {
FilterVertical16xH<0, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else {
FilterVertical32xH<0, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
}
} else if (filter_index == 2) { // 8 tap.
SetupTaps<8>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<2, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else if (width == 16) {
FilterVertical16xH<2, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else {
FilterVertical32xH<2, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
}
} else if (filter_index == 3) { // 2 tap.
SetupTaps<2>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<3, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else if (width == 16) {
FilterVertical16xH<3, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else {
FilterVertical32xH<3, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
}
} else if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<4, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else if (width == 16) {
FilterVertical16xH<4, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else {
FilterVertical32xH<4, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
}
} else {
SetupTaps<4>(&v_filter, taps_256);
if (width == 8) {
FilterVertical8xH<5, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else if (width == 16) {
FilterVertical16xH<5, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
} else {
FilterVertical32xH<5, /*is_compound=*/true>(
src, src_stride, dest, dest_stride, width, height, taps_256);
}
}
} else { // width <= 4
// Use 128 bit code.
__m128i taps[4];
if (filter_index < 2) { // 6 tap.
SetupTaps<6>(&v_filter, taps);
FilterVertical4xH<6, 0, /*is_compound=*/true>(src, src_stride, dest,
dest_stride, height, taps);
} else if (filter_index == 2) { // 8 tap.
SetupTaps<8>(&v_filter, taps);
FilterVertical4xH<8, 2, /*is_compound=*/true>(src, src_stride, dest,
dest_stride, height, taps);
} else if (filter_index == 3) { // 2 tap.
SetupTaps<2>(&v_filter, taps);
FilterVertical4xH<2, 3, /*is_compound=*/true>(src, src_stride, dest,
dest_stride, height, taps);
} else if (filter_index == 4) { // 4 tap.
SetupTaps<4>(&v_filter, taps);
FilterVertical4xH<4, 4, /*is_compound=*/true>(src, src_stride, dest,
dest_stride, height, taps);
} else {
SetupTaps<4>(&v_filter, taps);
FilterVertical4xH<4, 5, /*is_compound=*/true>(src, src_stride, dest,
dest_stride, height, taps);
}
}
}
void ConvolveHorizontal_AVX2(const void* const reference,
const ptrdiff_t reference_stride,
const int horizontal_filter_index,
const int /*vertical_filter_index*/,
const int horizontal_filter_id,
const int /*vertical_filter_id*/, const int width,
const int height, void* prediction,
const ptrdiff_t pred_stride) {
const int filter_index = GetFilterIndex(horizontal_filter_index, width);
// Set |src| to the outermost tap.
const auto* src = static_cast<const uint8_t*>(reference) - kHorizontalOffset;
auto* dest = static_cast<uint8_t*>(prediction);
if (width > 2) {
DoHorizontalPass(src, reference_stride, dest, pred_stride, width, height,
horizontal_filter_id, filter_index);
} else {
// Use non avx2 version for smaller widths.
DoHorizontalPass2xH(src, reference_stride, dest, pred_stride, width, height,
horizontal_filter_id, filter_index);
}
}
void ConvolveCompoundHorizontal_AVX2(
const void* const reference, const ptrdiff_t reference_stride,
const int horizontal_filter_index, const int /*vertical_filter_index*/,
const int horizontal_filter_id, const int /*vertical_filter_id*/,
const int width, const int height, void* prediction,
const ptrdiff_t pred_stride) {
const int filter_index = GetFilterIndex(horizontal_filter_index, width);
// Set |src| to the outermost tap.
const auto* src = static_cast<const uint8_t*>(reference) - kHorizontalOffset;
auto* dest = static_cast<uint8_t*>(prediction);
// All compound functions output to the predictor buffer with |pred_stride|
// equal to |width|.
assert(pred_stride == width);
// Compound functions start at 4x4.
assert(width >= 4 && height >= 4);
#ifdef NDEBUG
// Quiet compiler error.
(void)pred_stride;
#endif
DoHorizontalPass</*is_2d=*/false, /*is_compound=*/true>(
src, reference_stride, dest, width, width, height, horizontal_filter_id,
filter_index);
}
void ConvolveCompound2D_AVX2(const void* const reference,
const ptrdiff_t reference_stride,
const int horizontal_filter_index,
const int vertical_filter_index,
const int horizontal_filter_id,
const int vertical_filter_id, const int width,
const int height, void* prediction,
const ptrdiff_t pred_stride) {
const int horiz_filter_index = GetFilterIndex(horizontal_filter_index, width);
const int vert_filter_index = GetFilterIndex(vertical_filter_index, height);
const int vertical_taps = GetNumTapsInFilter(vert_filter_index);
// The output of the horizontal filter is guaranteed to fit in 16 bits.
alignas(32) uint16_t
intermediate_result[kMaxSuperBlockSizeInPixels *
(kMaxSuperBlockSizeInPixels + kSubPixelTaps - 1)];
const int intermediate_height = height + vertical_taps - 1;
const ptrdiff_t src_stride = reference_stride;
const auto* src = static_cast<const uint8_t*>(reference) -
(vertical_taps / 2 - 1) * src_stride - kHorizontalOffset;
DoHorizontalPass</*is_2d=*/true, /*is_compound=*/true>(
src, src_stride, intermediate_result, width, width, intermediate_height,
horizontal_filter_id, horiz_filter_index);
// Vertical filter.
auto* dest = static_cast<uint8_t*>(prediction);
const ptrdiff_t dest_stride = pred_stride;
assert(vertical_filter_id != 0);
const __m128i v_filter =
LoadLo8(kHalfSubPixelFilters[vert_filter_index][vertical_filter_id]);
// Use 256 bits for width > 8.
if (width > 8) {
__m256i taps_256[4];
const __m128i v_filter_ext = _mm_cvtepi8_epi16(v_filter);
if (vertical_taps == 8) {
SetupTaps<8, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<8, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps_256);
} else if (vertical_taps == 6) {
SetupTaps<6, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<6, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps_256);
} else if (vertical_taps == 4) {
SetupTaps<4, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<4, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps_256);
} else { // |vertical_taps| == 2
SetupTaps<2, /*is_2d_vertical=*/true>(&v_filter_ext, taps_256);
Filter2DVertical16xH<2, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps_256);
}
} else { // width <= 8
__m128i taps[4];
// Use 128 bit code.
if (vertical_taps == 8) {
SetupTaps<8, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 4) {
Filter2DVertical4xH<8, /*is_compound=*/true>(intermediate_result, dest,
dest_stride, height, taps);
} else {
Filter2DVertical<8, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps);
}
} else if (vertical_taps == 6) {
SetupTaps<6, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 4) {
Filter2DVertical4xH<6, /*is_compound=*/true>(intermediate_result, dest,
dest_stride, height, taps);
} else {
Filter2DVertical<6, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps);
}
} else if (vertical_taps == 4) {
SetupTaps<4, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 4) {
Filter2DVertical4xH<4, /*is_compound=*/true>(intermediate_result, dest,
dest_stride, height, taps);
} else {
Filter2DVertical<4, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps);
}
} else { // |vertical_taps| == 2
SetupTaps<2, /*is_2d_vertical=*/true>(&v_filter, taps);
if (width == 4) {
Filter2DVertical4xH<2, /*is_compound=*/true>(intermediate_result, dest,
dest_stride, height, taps);
} else {
Filter2DVertical<2, /*is_compound=*/true>(
intermediate_result, dest, dest_stride, width, height, taps);
}
}
}
}
void Init8bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth8);
assert(dsp != nullptr);
dsp->convolve[0][0][0][1] = ConvolveHorizontal_AVX2;
dsp->convolve[0][0][1][0] = ConvolveVertical_AVX2;
dsp->convolve[0][0][1][1] = Convolve2D_AVX2;
dsp->convolve[0][1][0][1] = ConvolveCompoundHorizontal_AVX2;
dsp->convolve[0][1][1][0] = ConvolveCompoundVertical_AVX2;
dsp->convolve[0][1][1][1] = ConvolveCompound2D_AVX2;
}
} // namespace
} // namespace low_bitdepth
void ConvolveInit_AVX2() { low_bitdepth::Init8bpp(); }
} // namespace dsp
} // namespace libgav1
#else // !LIBGAV1_TARGETING_AVX2
namespace libgav1 {
namespace dsp {
void ConvolveInit_AVX2() {}
} // namespace dsp
} // namespace libgav1
#endif // LIBGAV1_TARGETING_AVX2
|