1 /*
2  * Copyright (c) 2016, Alliance for Open Media. All rights reserved
3  *
4  * This source code is subject to the terms of the BSD 2 Clause License and
5  * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6  * was not distributed with this source code in the LICENSE file, you can
7  * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8  * Media Patent License 1.0 was not distributed with this source code in the
9  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10  */
11 
12 //  Test and time AOM intra-predictor functions
13 
14 #include <stdio.h>
15 #include <string>
16 
17 #include "third_party/googletest/src/googletest/include/gtest/gtest.h"
18 
19 #include "config/aom_dsp_rtcd.h"
20 
21 #include "test/acm_random.h"
22 #include "test/md5_helper.h"
23 #include "aom/aom_integer.h"
24 #include "aom_ports/mem.h"
25 #include "aom_ports/aom_timer.h"
26 #include "av1/common/common_data.h"
27 
28 // -----------------------------------------------------------------------------
29 
30 namespace {
31 
32 // Note:
33 // APPLY_UNIT_TESTS
34 // 1: Do unit tests
35 // 0: Generate MD5 array as required
36 #define APPLY_UNIT_TESTS 1
37 
38 typedef void (*AvxPredFunc)(uint8_t *dst, ptrdiff_t y_stride,
39                             const uint8_t *above, const uint8_t *left);
40 
41 const int kBPS = 64;
42 const int kTotalPixels = kBPS * kBPS;
43 // 4 DC variants, V, H, PAETH, SMOOTH, SMOOTH_V, SMOOTH_H
44 const int kNumAv1IntraFuncs = 10;
45 
46 #if APPLY_UNIT_TESTS
47 const char *kAv1IntraPredNames[kNumAv1IntraFuncs] = {
48   "DC_PRED", "DC_LEFT_PRED", "DC_TOP_PRED", "DC_128_PRED",   "V_PRED",
49   "H_PRED",  "PAETH_PRED",   "SMOOTH_PRED", "SMOOTH_V_PRED", "SMOOTH_H_PRED",
50 };
51 #endif  // APPLY_UNIT_TESTS
52 
53 template <typename Pixel>
54 struct IntraPredTestMem {
Init__anon388208540111::IntraPredTestMem55   void Init(int block_width, int block_height, int bd) {
56     ASSERT_LE(block_width, kBPS);
57     ASSERT_LE(block_height, kBPS);
58     // Note: for blocks having width <= 32 and height <= 32, we generate 32x32
59     // random pixels as before to avoid having to recalculate all hashes again.
60     const int block_size_upto_32 = (block_width <= 32) && (block_height <= 32);
61     stride = block_size_upto_32 ? 32 : kBPS;
62     num_pixels = stride * stride;
63     libaom_test::ACMRandom rnd(libaom_test::ACMRandom::DeterministicSeed());
64     above = above_mem + 16;
65     const int mask = (1 << bd) - 1;
66     for (int i = 0; i < num_pixels; ++i) ref_src[i] = rnd.Rand16() & mask;
67     for (int i = 0; i < stride; ++i) left[i] = rnd.Rand16() & mask;
68     for (int i = -1; i < stride; ++i) above[i] = rnd.Rand16() & mask;
69 
70     for (int i = stride; i < 2 * stride; ++i) {
71       left[i] = rnd.Rand16() & mask;
72       above[i] = rnd.Rand16() & mask;
73     }
74   }
75 
76   DECLARE_ALIGNED(16, Pixel, src[kTotalPixels]);
77   DECLARE_ALIGNED(16, Pixel, ref_src[kTotalPixels]);
78   DECLARE_ALIGNED(16, Pixel, left[2 * kBPS]);
79   Pixel *above;
80   int stride;
81   int num_pixels;
82 
83  private:
84   DECLARE_ALIGNED(16, Pixel, above_mem[2 * kBPS + 16]);
85 };
86 
87 // -----------------------------------------------------------------------------
88 // Low Bittdepth
89 
90 typedef IntraPredTestMem<uint8_t> Av1IntraPredTestMem;
91 
92 static const char *const kTxSizeStrings[TX_SIZES_ALL] = {
93   "4X4",  "8X8",  "16X16", "32X32", "64X64", "4X8",   "8X4",
94   "8X16", "16X8", "16X32", "32X16", "32X64", "64X32", "4X16",
95   "16X4", "8X32", "32X8",  "16X64", "64X16",
96 };
97 
CheckMd5Signature(TX_SIZE tx_size,bool is_hbd,const char * const signatures[],const void * data,size_t data_size,int elapsed_time,int idx)98 void CheckMd5Signature(TX_SIZE tx_size, bool is_hbd,
99                        const char *const signatures[], const void *data,
100                        size_t data_size, int elapsed_time, int idx) {
101   const std::string hbd_str = is_hbd ? "Hbd " : "";
102   const std::string name_str = hbd_str + "Intra" + kTxSizeStrings[tx_size];
103   libaom_test::MD5 md5;
104   md5.Add(reinterpret_cast<const uint8_t *>(data), data_size);
105 #if APPLY_UNIT_TESTS
106   printf("Mode %s[%13s]: %5d ms     MD5: %s\n", name_str.c_str(),
107          kAv1IntraPredNames[idx], elapsed_time, md5.Get());
108   EXPECT_STREQ(signatures[idx], md5.Get());
109 #else
110   (void)signatures;
111   (void)elapsed_time;
112   (void)idx;
113   printf("\"%s\",\n", md5.Get());
114 #endif
115 }
116 
TestIntraPred(TX_SIZE tx_size,AvxPredFunc const * pred_funcs,const char * const signatures[])117 void TestIntraPred(TX_SIZE tx_size, AvxPredFunc const *pred_funcs,
118                    const char *const signatures[]) {
119   const int block_width = tx_size_wide[tx_size];
120   const int block_height = tx_size_high[tx_size];
121   const int num_pixels_per_test =
122       block_width * block_height * kNumAv1IntraFuncs;
123   const int kNumTests = static_cast<int>(2.e10 / num_pixels_per_test);
124   Av1IntraPredTestMem intra_pred_test_mem;
125   intra_pred_test_mem.Init(block_width, block_height, 8);
126 
127   for (int k = 0; k < kNumAv1IntraFuncs; ++k) {
128     if (pred_funcs[k] == NULL) continue;
129     memcpy(intra_pred_test_mem.src, intra_pred_test_mem.ref_src,
130            sizeof(intra_pred_test_mem.src));
131     aom_usec_timer timer;
132     aom_usec_timer_start(&timer);
133     for (int num_tests = 0; num_tests < kNumTests; ++num_tests) {
134       pred_funcs[k](intra_pred_test_mem.src, intra_pred_test_mem.stride,
135                     intra_pred_test_mem.above, intra_pred_test_mem.left);
136     }
137     aom_usec_timer_mark(&timer);
138     const int elapsed_time =
139         static_cast<int>(aom_usec_timer_elapsed(&timer) / 1000);
140     CheckMd5Signature(
141         tx_size, false, signatures, intra_pred_test_mem.src,
142         intra_pred_test_mem.num_pixels * sizeof(*intra_pred_test_mem.src),
143         elapsed_time, k);
144   }
145 }
146 
147 static const char *const kSignatures[TX_SIZES_ALL][kNumAv1IntraFuncs] = {
148   {
149       // 4X4
150       "e7ed7353c3383fff942e500e9bfe82fe",
151       "2a4a26fcc6ce005eadc08354d196c8a9",
152       "269d92eff86f315d9c38fe7640d85b15",
153       "ae2960eea9f71ee3dabe08b282ec1773",
154       "6c1abcc44e90148998b51acd11144e9c",
155       "f7bb3186e1ef8a2b326037ff898cad8e",
156       "59fc0e923a08cfac0a493fb38988e2bb",
157       "9ff8bb37d9c830e6ab8ecb0c435d3c91",
158       "de6937fca02354f2874dbc5dbec5d5b3",
159       "723cf948137f7d8c7860d814e55ae67d",
160   },
161   {
162       // 8X8
163       "d8bbae5d6547cfc17e4f5f44c8730e88",
164       "373bab6d931868d41a601d9d88ce9ac3",
165       "6fdd5ff4ff79656c14747598ca9e3706",
166       "d9661c2811d6a73674f40ffb2b841847",
167       "7c722d10b19ccff0b8c171868e747385",
168       "f81dd986eb2b50f750d3a7da716b7e27",
169       "064404361748dd111a890a1470d7f0ea",
170       "dc29b7e1f78cc8e7525d5ea4c0ab9b78",
171       "97111eb1bc26bade6272015df829f1ae",
172       "d19a8a73cc46b807f2c5e817576cc1e1",
173   },
174   {
175       // 16X16
176       "50971c07ce26977d30298538fffec619",
177       "527a6b9e0dc5b21b98cf276305432bef",
178       "7eff2868f80ebc2c43a4f367281d80f7",
179       "67cd60512b54964ef6aff1bd4816d922",
180       "48371c87dc95c08a33b2048f89cf6468",
181       "b0acf2872ee411d7530af6d2625a7084",
182       "93d6b5352b571805ab16a55e1bbed86a",
183       "03764e4c0aebbc180e4e2c68fb06df2b",
184       "bb6c74c9076c9f266ab11fb57060d8e6",
185       "0c5162bc28489756ddb847b5678e6f07",
186   },
187   {
188       // 32X32
189       "a0a618c900e65ae521ccc8af789729f2",
190       "985aaa7c72b4a6c2fb431d32100cf13a",
191       "10662d09febc3ca13ee4e700120daeb5",
192       "b3b01379ba08916ef6b1b35f7d9ad51c",
193       "9f4261755795af97e34679c333ec7004",
194       "bc2c9da91ad97ef0d1610fb0a9041657",
195       "ef1653982b69e1f64bee3759f3e1ec45",
196       "1a51a675deba2c83282142eb48d3dc3d",
197       "866c224746dc260cda861a7b1b383fb3",
198       "cea23799fc3526e1b6a6ff02b42b82af",
199   },
200   {
201       // 64X64
202       "6e1094fa7b50bc813aa2ba29f5df8755",
203       "afe020786b83b793c2bbd9468097ff6e",
204       "be91585259bc37bf4dc1651936e90b3e",
205       "a1650dbcd56e10288c3e269eca37967d",
206       "9e5c34f3797e0cdd3cd9d4c05b0d8950",
207       "bc87be7ac899cc6a28f399d7516c49fe",
208       "9811fd0d2dd515f06122f5d1bd18b784",
209       "3c140e466f2c2c0d9cb7d2157ab8dc27",
210       "9543de76c925a8f6adc884cc7f98dc91",
211       "df1df0376cc944afe7e74e94f53e575a",
212   },
213   {
214       // 4X8
215       "d9fbebdc85f71ab1e18461b2db4a2adc",
216       "5ccb2a68284bc9714d94b8a06ccadbb2",
217       "735d059abc2744f3ff3f9590f7191b37",
218       "d9fbebdc85f71ab1e18461b2db4a2adc",
219       "6819497c44cd0ace120add83672996ee",
220       "7e3244f5a2d3edf81c7e962a842b97f9",
221       "809350f164cd4d1650850bb0f59c3260",
222       "1b60a394331eeab6927a6f8aaff57040",
223       "5307de1bd7329ba6b281d2c1b0b457f9",
224       "24c58a8138339846d95568efb91751db",
225   },
226   {
227       // 8X4
228       "23f9fc11344426c9bee2e06d57dfd628",
229       "2d71a26d1bae1fb34734de7b42fc5eb7",
230       "5af9c1b2fd9d5721fad67b67b3f7c816",
231       "00d71b17be662753813d515f197d145e",
232       "bef10ec984427e28f4390f43809d10af",
233       "77773cdfb7ed6bc882ab202a64b0a470",
234       "2cc48bd66d6b0121b5221d52ccd732af",
235       "b302155e1c9eeeafe2ba2bf68e807a46",
236       "561bc8d0e76d5041ebd5168fc6a115e1",
237       "81d0113fb1d0a9a24ffd6f1987b77948",
238   },
239   {
240       // 8X16
241       "c849de88b24f773dfcdd1d48d1209796",
242       "6cb807c1897b94866a0f3d3c56ed8695",
243       "d56db05a8ac7981762f5b877f486c4ef",
244       "b4bc01eb6e59a40922ad17715cafb04b",
245       "09d178439534f4062ae687c351f66d64",
246       "644501399cf73080ac606e5cef7ca09b",
247       "278076495180e17c065a95ab7278539a",
248       "9dd7f324816f242be408ffeb0c673732",
249       "f520c4a20acfa0bea1d253c6f0f040fd",
250       "85f38df809df2c2d7c8b4a157a65cd44",
251   },
252   {
253       // 16X8
254       "b4cbdbdf10ce13300b4063a3daf99e04",
255       "3731e1e6202064a9d0604d7c293ecee4",
256       "6c856188c4256a06452f0d5d70cac436",
257       "1f2192b4c8c497589484ea7bf9c944e8",
258       "84011bd4b7f565119d06787840e333a0",
259       "0e48949f7a6aa36f0d76b5d01f91124a",
260       "60eff8064634b6c73b10681356baeee9",
261       "1559aeb081a9c0c71111d6093c2ff9fd",
262       "c15479b739713773e5cabb748451987b",
263       "72e33ec12c9b67aea26d8d005fb82de2",
264   },
265   {
266       // 16X32
267       "abe5233d189cdbf79424721571bbaa7b",
268       "282759f81e3cfb2e2d396fe406b72a8b",
269       "e2224926c264f6f174cbc3167a233168",
270       "6814e85c2b33f8c9415d62e80394b47b",
271       "99cbbb60459c08a3061d72c4e4f6276a",
272       "1d1567d40b8e816f8c1f71e576fe0f87",
273       "36fdd371b624a075814d497c4832ec85",
274       "8ab8da61b727442b6ff692b40d0df018",
275       "e35a10ad7fdf2327e821504a90f6a6eb",
276       "1f7211e727dc1de7d6a55d082fbdd821",
277   },
278   {
279       // 32X16
280       "d1aeb8d5fdcfd3307922af01a798a4dc",
281       "b0bcb514ebfbee065faea9d34c12ae75",
282       "d6a18c63b4e909871c0137ca652fad23",
283       "fd047f2fc1b8ffb95d0eeef3e8796a45",
284       "645ab60779ea348fd93c81561c31bab9",
285       "4409633c9db8dff41ade4292a3a56e7f",
286       "5e36a11e069b31c2a739f3a9c7b37c24",
287       "e83b9483d702cfae496991c3c7fa92c0",
288       "12f6ddf98c7f30a277307f1ea935b030",
289       "354321d6c32bbdb0739e4fa2acbf41e1",
290   },
291   {
292       // 32X64
293       "0ce332b343934b34cd4417725faa85cb",
294       "4e2a2cfd8f56f15939bdfc753145b303",
295       "0f46d124ba9f48cdd5d5290acf786d6d",
296       "e1e8ed803236367821981500a3d9eebe",
297       "1d2f8e48e3adb7c448be05d9f66f4954",
298       "9fb2e176636a5689b26f73ca73fcc512",
299       "e720ebccae7e25e36f23da53ae5b5d6a",
300       "86fe4364734169aaa4520d799890d530",
301       "b1870290764bb1b100d1974e2bd70f1d",
302       "ce5b238e19d85ef69d85badfab4e63ae",
303   },
304   {
305       // 64X32
306       "a6c5aeb722615089efbca80b02951ceb",
307       "538424b24bd0830f21788e7238ca762f",
308       "80c15b303235f9bc2259027bb92dfdc4",
309       "e48e1ac15e97191a8fda08d62fff343e",
310       "12604b37875533665078405ef4582e35",
311       "0048afa17bd3e1632d68b96048836530",
312       "07a0cfcb56a5eed50c4bd6c26814336b",
313       "529d8a070de5bc6531fa3ee8f450c233",
314       "33c50a11c7d78f72434064f634305e95",
315       "e0ef7f0559c1a50ec5a8c12011b962f7",
316   },
317   {
318       // 4X16
319       "750491056568eb8fe15387b86bdf06b8",
320       "3a52dae9f599f08cfb3bd1b910dc0e11",
321       "af79f71e3e03dbeca44e2e13561f70c7",
322       "ca7dfd7624afc0c06fb5552f44398535",
323       "b591af115444bf43140c29c269f68fb2",
324       "483d942ae36e69e62f31eb215331416f",
325       "f14b58525e81870bc5d95c7ac71a347f",
326       "371208bb4027d9badb04095d1590bbc4",
327       "c7049c21b2924d70c7c12784d6b6b796",
328       "7d87233f4b5b0f12086045e5d7b2d4c2",
329   },
330   {
331       // 16X4
332       "7c6e325a65e77e732b3adbe237e045e4",
333       "24478f93ffcec47852e004d0fe948464",
334       "258d042c67d4ba3ecfa667f0adc9aebf",
335       "b2cd21d06959f159a1f3c4d9768ee7fb",
336       "b4e1f38157bf8410e7c3da02f687a343",
337       "869e703729eb0fc0711c254944ff5d5a",
338       "9638dd77105a640b146a8201ea7a0801",
339       "919d932c6af8a1cc7486e8ce996dd487",
340       "e1c9be493b6714c7ae48f30044c43140",
341       "bf0fe3889d654b2f6eb98c8fc751f9e4",
342   },
343   {
344       // 8X32
345       "8dfac4319fe0bd40013ffb3102da8c72",
346       "feb46b6dc4e2ca0a09533bfc51d4dcb0",
347       "850837ec714c37262216527aaf4cbbe9",
348       "4603c7800fb08361f163daca876e8bda",
349       "1ff95e7d2debc27b05806fb25abfd624",
350       "d81b9a51a062b23ca7823804cb7bec22",
351       "f1d8978158766f46335203608cb807e7",
352       "f3527096256258c0878d644a9d7d53ca",
353       "cbde98ac8b009953eb112807ad2ea29e",
354       "654fb1153415747feae599f538122af5",
355   },
356   {
357       // 32X8
358       "3d4ee16fab374357474f60b845327bc7",
359       "bc17c5059473a476df4e85f56395ad55",
360       "3d4ee16fab374357474f60b845327bc7",
361       "c14b8db34dc2355b84e3735c9ba16c7f",
362       "a71d25b5d47a92a8b9223c98f18458ee",
363       "6c1cfe2b1893f4576a80675687cb6426",
364       "92d11bbef8b85bb48d799bb055de3514",
365       "bcf81d1db8ae5cc03360467f44f498ec",
366       "79f8c564163555592e808e145eaf5c60",
367       "46fff139cef2ef773938bcc8b0e5abb8",
368   },
369   {
370       // 16X64
371       "3b2a053ee8b05a8ac35ad23b0422a151",
372       "12b0c69595328c465e0b25e0c9e3e9fc",
373       "f77c544ac8035e01920deae40cee7b07",
374       "727797ef15ccd8d325476fe8f12006a3",
375       "f3be77c0fe67eb5d9d515e92bec21eb7",
376       "f1ece6409e01e9dd98b800d49628247d",
377       "efd2ec9bfbbd4fd1f6604ea369df1894",
378       "ec703de918422b9e03197ba0ed60a199",
379       "739418efb89c07f700895deaa5d0b3e3",
380       "9943ae1bbeeebfe1d3a92dc39e049d63",
381   },
382   {
383       // 64X16
384       "821b76b1494d4f84d20817840f719a1a",
385       "69e462c3338a9aaf993c3f7cfbc15649",
386       "516d8f6eb054d74d150e7b444185b6b9",
387       "de1b736e9d99129609d6ef3a491507a0",
388       "fd9b4276e7affe1e0e4ce4f428058994",
389       "cd82fd361a4767ac29a9f406b480b8f3",
390       "2792c2f810157a4a6cb13c28529ff779",
391       "1220442d90c4255ba0969d28b91e93a6",
392       "c7253e10b45f7f67dfee3256c9b94825",
393       "879792198071c7e0b50b9b5010d8c18f",
394   },
395 };
396 
397 }  // namespace
398 
399 // Defines a test case for |arch| (e.g., C, SSE2, ...) passing the predictors
400 // to TestIntraPred. The test name is 'arch.TestIntraPred_tx_size', e.g.,
401 // C.TestIntraPred.0
402 #define INTRA_PRED_TEST(arch, tx_size, dc, dc_left, dc_top, dc_128, v, h,  \
403                         paeth, smooth, smooth_v, smooth_h)                 \
404   TEST(arch, DISABLED_##TestIntraPred_##tx_size) {                         \
405     static const AvxPredFunc aom_intra_pred[] = {                          \
406       dc, dc_left, dc_top, dc_128, v, h, paeth, smooth, smooth_v, smooth_h \
407     };                                                                     \
408     TestIntraPred(tx_size, aom_intra_pred, kSignatures[tx_size]);          \
409   }
410 
411 // -----------------------------------------------------------------------------
412 // 4x4, 4x8, 4x16
413 
414 INTRA_PRED_TEST(C_1, TX_4X4, aom_dc_predictor_4x4_c,
415                 aom_dc_left_predictor_4x4_c, aom_dc_top_predictor_4x4_c,
416                 aom_dc_128_predictor_4x4_c, aom_v_predictor_4x4_c,
417                 aom_h_predictor_4x4_c, aom_paeth_predictor_4x4_c,
418                 aom_smooth_predictor_4x4_c, aom_smooth_v_predictor_4x4_c,
419                 aom_smooth_h_predictor_4x4_c)
420 
421 INTRA_PRED_TEST(C_2, TX_4X8, aom_dc_predictor_4x8_c,
422                 aom_dc_left_predictor_4x8_c, aom_dc_top_predictor_4x8_c,
423                 aom_dc_128_predictor_4x8_c, aom_v_predictor_4x8_c,
424                 aom_h_predictor_4x8_c, aom_paeth_predictor_4x8_c,
425                 aom_smooth_predictor_4x8_c, aom_smooth_v_predictor_4x8_c,
426                 aom_smooth_h_predictor_4x8_c)
427 
428 #if !CONFIG_REALTIME_ONLY
429 INTRA_PRED_TEST(C_3, TX_4X16, aom_dc_predictor_4x16_c,
430                 aom_dc_left_predictor_4x16_c, aom_dc_top_predictor_4x16_c,
431                 aom_dc_128_predictor_4x16_c, aom_v_predictor_4x16_c,
432                 aom_h_predictor_4x16_c, aom_paeth_predictor_4x16_c,
433                 aom_smooth_predictor_4x16_c, aom_smooth_v_predictor_4x16_c,
434                 aom_smooth_h_predictor_4x16_c)
435 #endif
436 
437 #if HAVE_SSE2
438 INTRA_PRED_TEST(SSE2_1, TX_4X4, aom_dc_predictor_4x4_sse2,
439                 aom_dc_left_predictor_4x4_sse2, aom_dc_top_predictor_4x4_sse2,
440                 aom_dc_128_predictor_4x4_sse2, aom_v_predictor_4x4_sse2,
441                 aom_h_predictor_4x4_sse2, NULL, NULL, NULL, NULL)
442 INTRA_PRED_TEST(SSE2_2, TX_4X8, aom_dc_predictor_4x8_sse2,
443                 aom_dc_left_predictor_4x8_sse2, aom_dc_top_predictor_4x8_sse2,
444                 aom_dc_128_predictor_4x8_sse2, aom_v_predictor_4x8_sse2,
445                 aom_h_predictor_4x8_sse2, NULL, NULL, NULL, NULL)
446 #if !CONFIG_REALTIME_ONLY
447 INTRA_PRED_TEST(SSE2_3, TX_4X16, aom_dc_predictor_4x16_sse2,
448                 aom_dc_left_predictor_4x16_sse2, aom_dc_top_predictor_4x16_sse2,
449                 aom_dc_128_predictor_4x16_sse2, aom_v_predictor_4x16_sse2,
450                 aom_h_predictor_4x16_sse2, NULL, NULL, NULL, NULL)
451 #endif
452 #endif  // HAVE_SSE2
453 
454 #if HAVE_SSSE3
455 INTRA_PRED_TEST(SSSE3_1, TX_4X4, NULL, NULL, NULL, NULL, NULL, NULL,
456                 aom_paeth_predictor_4x4_ssse3, aom_smooth_predictor_4x4_ssse3,
457                 aom_smooth_v_predictor_4x4_ssse3,
458                 aom_smooth_h_predictor_4x4_ssse3)
459 INTRA_PRED_TEST(SSSE3_2, TX_4X8, NULL, NULL, NULL, NULL, NULL, NULL,
460                 aom_paeth_predictor_4x8_ssse3, aom_smooth_predictor_4x8_ssse3,
461                 aom_smooth_v_predictor_4x8_ssse3,
462                 aom_smooth_h_predictor_4x8_ssse3)
463 #if !CONFIG_REALTIME_ONLY
464 INTRA_PRED_TEST(SSSE3_3, TX_4X16, NULL, NULL, NULL, NULL, NULL, NULL,
465                 aom_paeth_predictor_4x16_ssse3, aom_smooth_predictor_4x16_ssse3,
466                 aom_smooth_v_predictor_4x16_ssse3,
467                 aom_smooth_h_predictor_4x16_ssse3)
468 #endif
469 #endif  // HAVE_SSSE3
470 
471 #if HAVE_DSPR2
472 INTRA_PRED_TEST(DSPR2, TX_4X4, aom_dc_predictor_4x4_dspr2, NULL, NULL, NULL,
473                 NULL, aom_h_predictor_4x4_dspr2, NULL, NULL, NULL, NULL)
474 #endif  // HAVE_DSPR2
475 
476 #if HAVE_NEON
477 INTRA_PRED_TEST(NEON, TX_4X4, aom_dc_predictor_4x4_neon,
478                 aom_dc_left_predictor_4x4_neon, aom_dc_top_predictor_4x4_neon,
479                 aom_dc_128_predictor_4x4_neon, aom_v_predictor_4x4_neon,
480                 aom_h_predictor_4x4_neon, NULL, NULL, NULL, NULL)
481 #endif  // HAVE_NEON
482 
483 #if HAVE_MSA
484 INTRA_PRED_TEST(MSA, TX_4X4, aom_dc_predictor_4x4_msa,
485                 aom_dc_left_predictor_4x4_msa, aom_dc_top_predictor_4x4_msa,
486                 aom_dc_128_predictor_4x4_msa, aom_v_predictor_4x4_msa,
487                 aom_h_predictor_4x4_msa, NULL, NULL, NULL, NULL)
488 #endif  // HAVE_MSA
489 
490 // -----------------------------------------------------------------------------
491 // 8x8, 8x4, 8x16, 8x32
492 
493 INTRA_PRED_TEST(C_1, TX_8X8, aom_dc_predictor_8x8_c,
494                 aom_dc_left_predictor_8x8_c, aom_dc_top_predictor_8x8_c,
495                 aom_dc_128_predictor_8x8_c, aom_v_predictor_8x8_c,
496                 aom_h_predictor_8x8_c, aom_paeth_predictor_8x8_c,
497                 aom_smooth_predictor_8x8_c, aom_smooth_v_predictor_8x8_c,
498                 aom_smooth_h_predictor_8x8_c)
499 
500 INTRA_PRED_TEST(C_2, TX_8X4, aom_dc_predictor_8x4_c,
501                 aom_dc_left_predictor_8x4_c, aom_dc_top_predictor_8x4_c,
502                 aom_dc_128_predictor_8x4_c, aom_v_predictor_8x4_c,
503                 aom_h_predictor_8x4_c, aom_paeth_predictor_8x4_c,
504                 aom_smooth_predictor_8x4_c, aom_smooth_v_predictor_8x4_c,
505                 aom_smooth_h_predictor_8x4_c)
506 
507 INTRA_PRED_TEST(C_3, TX_8X16, aom_dc_predictor_8x16_c,
508                 aom_dc_left_predictor_8x16_c, aom_dc_top_predictor_8x16_c,
509                 aom_dc_128_predictor_8x16_c, aom_v_predictor_8x16_c,
510                 aom_h_predictor_8x16_c, aom_paeth_predictor_8x16_c,
511                 aom_smooth_predictor_8x16_c, aom_smooth_v_predictor_8x16_c,
512                 aom_smooth_h_predictor_8x16_c)
513 
514 #if !CONFIG_REALTIME_ONLY
515 INTRA_PRED_TEST(C_4, TX_8X32, aom_dc_predictor_8x32_c,
516                 aom_dc_left_predictor_8x32_c, aom_dc_top_predictor_8x32_c,
517                 aom_dc_128_predictor_8x32_c, aom_v_predictor_8x32_c,
518                 aom_h_predictor_8x32_c, aom_paeth_predictor_8x32_c,
519                 aom_smooth_predictor_8x32_c, aom_smooth_v_predictor_8x32_c,
520                 aom_smooth_h_predictor_8x32_c)
521 #endif
522 
523 #if HAVE_SSE2
524 INTRA_PRED_TEST(SSE2_1, TX_8X8, aom_dc_predictor_8x8_sse2,
525                 aom_dc_left_predictor_8x8_sse2, aom_dc_top_predictor_8x8_sse2,
526                 aom_dc_128_predictor_8x8_sse2, aom_v_predictor_8x8_sse2,
527                 aom_h_predictor_8x8_sse2, NULL, NULL, NULL, NULL)
528 INTRA_PRED_TEST(SSE2_2, TX_8X4, aom_dc_predictor_8x4_sse2,
529                 aom_dc_left_predictor_8x4_sse2, aom_dc_top_predictor_8x4_sse2,
530                 aom_dc_128_predictor_8x4_sse2, aom_v_predictor_8x4_sse2,
531                 aom_h_predictor_8x4_sse2, NULL, NULL, NULL, NULL)
532 INTRA_PRED_TEST(SSE2_3, TX_8X16, aom_dc_predictor_8x16_sse2,
533                 aom_dc_left_predictor_8x16_sse2, aom_dc_top_predictor_8x16_sse2,
534                 aom_dc_128_predictor_8x16_sse2, aom_v_predictor_8x16_sse2,
535                 aom_h_predictor_8x16_sse2, NULL, NULL, NULL, NULL)
536 #if !CONFIG_REALTIME_ONLY
537 INTRA_PRED_TEST(SSE2_4, TX_8X32, aom_dc_predictor_8x32_sse2,
538                 aom_dc_left_predictor_8x32_sse2, aom_dc_top_predictor_8x32_sse2,
539                 aom_dc_128_predictor_8x32_sse2, aom_v_predictor_8x32_sse2,
540                 aom_h_predictor_8x32_sse2, NULL, NULL, NULL, NULL)
541 #endif
542 #endif  // HAVE_SSE2
543 
544 #if HAVE_SSSE3
545 INTRA_PRED_TEST(SSSE3_1, TX_8X8, NULL, NULL, NULL, NULL, NULL, NULL,
546                 aom_paeth_predictor_8x8_ssse3, aom_smooth_predictor_8x8_ssse3,
547                 aom_smooth_v_predictor_8x8_ssse3,
548                 aom_smooth_h_predictor_8x8_ssse3)
549 INTRA_PRED_TEST(SSSE3_2, TX_8X4, NULL, NULL, NULL, NULL, NULL, NULL,
550                 aom_paeth_predictor_8x4_ssse3, aom_smooth_predictor_8x4_ssse3,
551                 aom_smooth_v_predictor_8x4_ssse3,
552                 aom_smooth_h_predictor_8x4_ssse3)
553 INTRA_PRED_TEST(SSSE3_3, TX_8X16, NULL, NULL, NULL, NULL, NULL, NULL,
554                 aom_paeth_predictor_8x16_ssse3, aom_smooth_predictor_8x16_ssse3,
555                 aom_smooth_v_predictor_8x16_ssse3,
556                 aom_smooth_h_predictor_8x16_ssse3)
557 #if !CONFIG_REALTIME_ONLY
558 INTRA_PRED_TEST(SSSE3_4, TX_8X32, NULL, NULL, NULL, NULL, NULL, NULL,
559                 aom_paeth_predictor_8x32_ssse3, aom_smooth_predictor_8x32_ssse3,
560                 aom_smooth_v_predictor_8x32_ssse3,
561                 aom_smooth_h_predictor_8x32_ssse3)
562 #endif
563 #endif  // HAVE_SSSE3
564 
565 #if HAVE_DSPR2
566 INTRA_PRED_TEST(DSPR2, TX_8X8, aom_dc_predictor_8x8_dspr2, NULL, NULL, NULL,
567                 NULL, aom_h_predictor_8x8_dspr2, NULL, NULL, NULL, NULL)
568 #endif  // HAVE_DSPR2
569 
570 #if HAVE_NEON
571 INTRA_PRED_TEST(NEON, TX_8X8, aom_dc_predictor_8x8_neon,
572                 aom_dc_left_predictor_8x8_neon, aom_dc_top_predictor_8x8_neon,
573                 aom_dc_128_predictor_8x8_neon, aom_v_predictor_8x8_neon,
574                 aom_h_predictor_8x8_neon, NULL, NULL, NULL, NULL)
575 #endif  // HAVE_NEON
576 
577 #if HAVE_MSA
578 INTRA_PRED_TEST(MSA, TX_8X8, aom_dc_predictor_8x8_msa,
579                 aom_dc_left_predictor_8x8_msa, aom_dc_top_predictor_8x8_msa,
580                 aom_dc_128_predictor_8x8_msa, aom_v_predictor_8x8_msa,
581                 aom_h_predictor_8x8_msa, NULL, NULL, NULL, NULL)
582 #endif  // HAVE_MSA
583 
584 // -----------------------------------------------------------------------------
585 // 16x16, 16x8, 16x32, 16x4, 16x64
586 
587 INTRA_PRED_TEST(C_1, TX_16X16, aom_dc_predictor_16x16_c,
588                 aom_dc_left_predictor_16x16_c, aom_dc_top_predictor_16x16_c,
589                 aom_dc_128_predictor_16x16_c, aom_v_predictor_16x16_c,
590                 aom_h_predictor_16x16_c, aom_paeth_predictor_16x16_c,
591                 aom_smooth_predictor_16x16_c, aom_smooth_v_predictor_16x16_c,
592                 aom_smooth_h_predictor_16x16_c)
593 
594 INTRA_PRED_TEST(C_2, TX_16X8, aom_dc_predictor_16x8_c,
595                 aom_dc_left_predictor_16x8_c, aom_dc_top_predictor_16x8_c,
596                 aom_dc_128_predictor_16x8_c, aom_v_predictor_16x8_c,
597                 aom_h_predictor_16x8_c, aom_paeth_predictor_16x8_c,
598                 aom_smooth_predictor_16x8_c, aom_smooth_v_predictor_16x8_c,
599                 aom_smooth_h_predictor_16x8_c)
600 
601 INTRA_PRED_TEST(C_3, TX_16X32, aom_dc_predictor_16x32_c,
602                 aom_dc_left_predictor_16x32_c, aom_dc_top_predictor_16x32_c,
603                 aom_dc_128_predictor_16x32_c, aom_v_predictor_16x32_c,
604                 aom_h_predictor_16x32_c, aom_paeth_predictor_16x32_c,
605                 aom_smooth_predictor_16x32_c, aom_smooth_v_predictor_16x32_c,
606                 aom_smooth_h_predictor_16x32_c)
607 
608 #if !CONFIG_REALTIME_ONLY
609 INTRA_PRED_TEST(C_4, TX_16X4, aom_dc_predictor_16x4_c,
610                 aom_dc_left_predictor_16x4_c, aom_dc_top_predictor_16x4_c,
611                 aom_dc_128_predictor_16x4_c, aom_v_predictor_16x4_c,
612                 aom_h_predictor_16x4_c, aom_paeth_predictor_16x4_c,
613                 aom_smooth_predictor_16x4_c, aom_smooth_v_predictor_16x4_c,
614                 aom_smooth_h_predictor_16x4_c)
615 
616 INTRA_PRED_TEST(C_5, TX_16X64, aom_dc_predictor_16x64_c,
617                 aom_dc_left_predictor_16x64_c, aom_dc_top_predictor_16x64_c,
618                 aom_dc_128_predictor_16x64_c, aom_v_predictor_16x64_c,
619                 aom_h_predictor_16x64_c, aom_paeth_predictor_16x64_c,
620                 aom_smooth_predictor_16x64_c, aom_smooth_v_predictor_16x64_c,
621                 aom_smooth_h_predictor_16x64_c)
622 #endif
623 
624 #if HAVE_SSE2
625 INTRA_PRED_TEST(SSE2_1, TX_16X16, aom_dc_predictor_16x16_sse2,
626                 aom_dc_left_predictor_16x16_sse2,
627                 aom_dc_top_predictor_16x16_sse2,
628                 aom_dc_128_predictor_16x16_sse2, aom_v_predictor_16x16_sse2,
629                 aom_h_predictor_16x16_sse2, NULL, NULL, NULL, NULL)
630 INTRA_PRED_TEST(SSE2_2, TX_16X8, aom_dc_predictor_16x8_sse2,
631                 aom_dc_left_predictor_16x8_sse2, aom_dc_top_predictor_16x8_sse2,
632                 aom_dc_128_predictor_16x8_sse2, aom_v_predictor_16x8_sse2,
633                 aom_h_predictor_16x8_sse2, NULL, NULL, NULL, NULL)
634 INTRA_PRED_TEST(SSE2_3, TX_16X32, aom_dc_predictor_16x32_sse2,
635                 aom_dc_left_predictor_16x32_sse2,
636                 aom_dc_top_predictor_16x32_sse2,
637                 aom_dc_128_predictor_16x32_sse2, aom_v_predictor_16x32_sse2,
638                 aom_h_predictor_16x32_sse2, NULL, NULL, NULL, NULL)
639 #if !CONFIG_REALTIME_ONLY
640 INTRA_PRED_TEST(SSE2_4, TX_16X64, aom_dc_predictor_16x64_sse2,
641                 aom_dc_left_predictor_16x64_sse2,
642                 aom_dc_top_predictor_16x64_sse2,
643                 aom_dc_128_predictor_16x64_sse2, aom_v_predictor_16x64_sse2,
644                 aom_h_predictor_16x64_sse2, NULL, NULL, NULL, NULL)
645 INTRA_PRED_TEST(SSE2_5, TX_16X4, aom_dc_predictor_16x4_sse2,
646                 aom_dc_left_predictor_16x4_sse2, aom_dc_top_predictor_16x4_sse2,
647                 aom_dc_128_predictor_16x4_sse2, aom_v_predictor_16x4_sse2,
648                 aom_h_predictor_16x4_sse2, NULL, NULL, NULL, NULL)
649 #endif
650 #endif  // HAVE_SSE2
651 
652 #if HAVE_SSSE3
653 INTRA_PRED_TEST(SSSE3_1, TX_16X16, NULL, NULL, NULL, NULL, NULL, NULL,
654                 aom_paeth_predictor_16x16_ssse3,
655                 aom_smooth_predictor_16x16_ssse3,
656                 aom_smooth_v_predictor_16x16_ssse3,
657                 aom_smooth_h_predictor_16x16_ssse3)
658 INTRA_PRED_TEST(SSSE3_2, TX_16X8, NULL, NULL, NULL, NULL, NULL, NULL,
659                 aom_paeth_predictor_16x8_ssse3, aom_smooth_predictor_16x8_ssse3,
660                 aom_smooth_v_predictor_16x8_ssse3,
661                 aom_smooth_h_predictor_16x8_ssse3)
662 INTRA_PRED_TEST(SSSE3_3, TX_16X32, NULL, NULL, NULL, NULL, NULL, NULL,
663                 aom_paeth_predictor_16x32_ssse3,
664                 aom_smooth_predictor_16x32_ssse3,
665                 aom_smooth_v_predictor_16x32_ssse3,
666                 aom_smooth_h_predictor_16x32_ssse3)
667 #if !CONFIG_REALTIME_ONLY
668 INTRA_PRED_TEST(SSSE3_4, TX_16X64, NULL, NULL, NULL, NULL, NULL, NULL,
669                 aom_paeth_predictor_16x64_ssse3,
670                 aom_smooth_predictor_16x64_ssse3,
671                 aom_smooth_v_predictor_16x64_ssse3,
672                 aom_smooth_h_predictor_16x64_ssse3)
673 INTRA_PRED_TEST(SSSE3_5, TX_16X4, NULL, NULL, NULL, NULL, NULL, NULL,
674                 aom_paeth_predictor_16x4_ssse3, aom_smooth_predictor_16x4_ssse3,
675                 aom_smooth_v_predictor_16x4_ssse3,
676                 aom_smooth_h_predictor_16x4_ssse3)
677 #endif
678 #endif  // HAVE_SSSE3
679 
680 #if HAVE_AVX2
681 INTRA_PRED_TEST(AVX2_1, TX_16X16, NULL, NULL, NULL, NULL, NULL, NULL,
682                 aom_paeth_predictor_16x16_avx2, NULL, NULL, NULL)
683 INTRA_PRED_TEST(AVX2_2, TX_16X8, NULL, NULL, NULL, NULL, NULL, NULL,
684                 aom_paeth_predictor_16x8_avx2, NULL, NULL, NULL)
685 INTRA_PRED_TEST(AVX2_3, TX_16X32, NULL, NULL, NULL, NULL, NULL, NULL,
686                 aom_paeth_predictor_16x32_avx2, NULL, NULL, NULL)
687 #if !CONFIG_REALTIME_ONLY
688 INTRA_PRED_TEST(AVX2_4, TX_16X64, NULL, NULL, NULL, NULL, NULL, NULL,
689                 aom_paeth_predictor_16x64_avx2, NULL, NULL, NULL)
690 #endif
691 #endif  // HAVE_AVX2
692 
693 #if HAVE_DSPR2
694 INTRA_PRED_TEST(DSPR2, TX_16X16, aom_dc_predictor_16x16_dspr2, NULL, NULL, NULL,
695                 NULL, aom_h_predictor_16x16_dspr2, NULL, NULL, NULL, NULL)
696 #endif  // HAVE_DSPR2
697 
698 #if HAVE_NEON
699 INTRA_PRED_TEST(NEON, TX_16X16, aom_dc_predictor_16x16_neon,
700                 aom_dc_left_predictor_16x16_neon,
701                 aom_dc_top_predictor_16x16_neon,
702                 aom_dc_128_predictor_16x16_neon, aom_v_predictor_16x16_neon,
703                 aom_h_predictor_16x16_neon, NULL, NULL, NULL, NULL)
704 #endif  // HAVE_NEON
705 
706 #if HAVE_MSA
707 INTRA_PRED_TEST(MSA, TX_16X16, aom_dc_predictor_16x16_msa,
708                 aom_dc_left_predictor_16x16_msa, aom_dc_top_predictor_16x16_msa,
709                 aom_dc_128_predictor_16x16_msa, aom_v_predictor_16x16_msa,
710                 aom_h_predictor_16x16_msa, NULL, NULL, NULL, NULL)
711 #endif  // HAVE_MSA
712 
713 // -----------------------------------------------------------------------------
714 // 32x32, 32x16, 32x64, 32x8
715 
716 INTRA_PRED_TEST(C_1, TX_32X32, aom_dc_predictor_32x32_c,
717                 aom_dc_left_predictor_32x32_c, aom_dc_top_predictor_32x32_c,
718                 aom_dc_128_predictor_32x32_c, aom_v_predictor_32x32_c,
719                 aom_h_predictor_32x32_c, aom_paeth_predictor_32x32_c,
720                 aom_smooth_predictor_32x32_c, aom_smooth_v_predictor_32x32_c,
721                 aom_smooth_h_predictor_32x32_c)
722 
723 INTRA_PRED_TEST(C_2, TX_32X16, aom_dc_predictor_32x16_c,
724                 aom_dc_left_predictor_32x16_c, aom_dc_top_predictor_32x16_c,
725                 aom_dc_128_predictor_32x16_c, aom_v_predictor_32x16_c,
726                 aom_h_predictor_32x16_c, aom_paeth_predictor_32x16_c,
727                 aom_smooth_predictor_32x16_c, aom_smooth_v_predictor_32x16_c,
728                 aom_smooth_h_predictor_32x16_c)
729 
730 INTRA_PRED_TEST(C_3, TX_32X64, aom_dc_predictor_32x64_c,
731                 aom_dc_left_predictor_32x64_c, aom_dc_top_predictor_32x64_c,
732                 aom_dc_128_predictor_32x64_c, aom_v_predictor_32x64_c,
733                 aom_h_predictor_32x64_c, aom_paeth_predictor_32x64_c,
734                 aom_smooth_predictor_32x64_c, aom_smooth_v_predictor_32x64_c,
735                 aom_smooth_h_predictor_32x64_c)
736 
737 #if !CONFIG_REALTIME_ONLY
738 INTRA_PRED_TEST(C_4, TX_32X8, aom_dc_predictor_32x8_c,
739                 aom_dc_left_predictor_32x8_c, aom_dc_top_predictor_32x8_c,
740                 aom_dc_128_predictor_32x8_c, aom_v_predictor_32x8_c,
741                 aom_h_predictor_32x8_c, aom_paeth_predictor_32x8_c,
742                 aom_smooth_predictor_32x8_c, aom_smooth_v_predictor_32x8_c,
743                 aom_smooth_h_predictor_32x8_c)
744 #endif
745 
746 #if HAVE_SSE2
747 INTRA_PRED_TEST(SSE2_1, TX_32X32, aom_dc_predictor_32x32_sse2,
748                 aom_dc_left_predictor_32x32_sse2,
749                 aom_dc_top_predictor_32x32_sse2,
750                 aom_dc_128_predictor_32x32_sse2, aom_v_predictor_32x32_sse2,
751                 aom_h_predictor_32x32_sse2, NULL, NULL, NULL, NULL)
752 INTRA_PRED_TEST(SSE2_2, TX_32X16, aom_dc_predictor_32x16_sse2,
753                 aom_dc_left_predictor_32x16_sse2,
754                 aom_dc_top_predictor_32x16_sse2,
755                 aom_dc_128_predictor_32x16_sse2, aom_v_predictor_32x16_sse2,
756                 aom_h_predictor_32x16_sse2, NULL, NULL, NULL, NULL)
757 INTRA_PRED_TEST(SSE2_3, TX_32X64, aom_dc_predictor_32x64_sse2,
758                 aom_dc_left_predictor_32x64_sse2,
759                 aom_dc_top_predictor_32x64_sse2,
760                 aom_dc_128_predictor_32x64_sse2, aom_v_predictor_32x64_sse2,
761                 aom_h_predictor_32x64_sse2, NULL, NULL, NULL, NULL)
762 #if !CONFIG_REALTIME_ONLY
763 INTRA_PRED_TEST(SSE2_4, TX_32X8, aom_dc_predictor_32x8_sse2,
764                 aom_dc_left_predictor_32x8_sse2, aom_dc_top_predictor_32x8_sse2,
765                 aom_dc_128_predictor_32x8_sse2, aom_v_predictor_32x8_sse2,
766                 aom_h_predictor_32x8_sse2, NULL, NULL, NULL, NULL)
767 #endif
768 #endif  // HAVE_SSE2
769 
770 #if HAVE_SSSE3
771 INTRA_PRED_TEST(SSSE3_1, TX_32X32, NULL, NULL, NULL, NULL, NULL, NULL,
772                 aom_paeth_predictor_32x32_ssse3,
773                 aom_smooth_predictor_32x32_ssse3,
774                 aom_smooth_v_predictor_32x32_ssse3,
775                 aom_smooth_h_predictor_32x32_ssse3)
776 INTRA_PRED_TEST(SSSE3_2, TX_32X16, NULL, NULL, NULL, NULL, NULL, NULL,
777                 aom_paeth_predictor_32x16_ssse3,
778                 aom_smooth_predictor_32x16_ssse3,
779                 aom_smooth_v_predictor_32x16_ssse3,
780                 aom_smooth_h_predictor_32x16_ssse3)
781 INTRA_PRED_TEST(SSSE3_3, TX_32X64, NULL, NULL, NULL, NULL, NULL, NULL,
782                 aom_paeth_predictor_32x64_ssse3,
783                 aom_smooth_predictor_32x64_ssse3,
784                 aom_smooth_v_predictor_32x64_ssse3,
785                 aom_smooth_h_predictor_32x64_ssse3)
786 #if !CONFIG_REALTIME_ONLY
787 INTRA_PRED_TEST(SSSE3_4, TX_32X8, NULL, NULL, NULL, NULL, NULL, NULL,
788                 aom_paeth_predictor_32x8_ssse3, aom_smooth_predictor_32x8_ssse3,
789                 aom_smooth_v_predictor_32x8_ssse3,
790                 aom_smooth_h_predictor_32x8_ssse3)
791 #endif
792 #endif  // HAVE_SSSE3
793 
794 #if HAVE_AVX2
795 INTRA_PRED_TEST(AVX2_1, TX_32X32, aom_dc_predictor_32x32_avx2,
796                 aom_dc_left_predictor_32x32_avx2,
797                 aom_dc_top_predictor_32x32_avx2,
798                 aom_dc_128_predictor_32x32_avx2, aom_v_predictor_32x32_avx2,
799                 aom_h_predictor_32x32_avx2, aom_paeth_predictor_32x32_avx2,
800                 NULL, NULL, NULL)
801 INTRA_PRED_TEST(AVX2_2, TX_32X16, aom_dc_predictor_32x16_avx2,
802                 aom_dc_left_predictor_32x16_avx2,
803                 aom_dc_top_predictor_32x16_avx2,
804                 aom_dc_128_predictor_32x16_avx2, aom_v_predictor_32x16_avx2,
805                 NULL, aom_paeth_predictor_32x16_avx2, NULL, NULL, NULL)
806 INTRA_PRED_TEST(AVX2_3, TX_32X64, aom_dc_predictor_32x64_avx2,
807                 aom_dc_left_predictor_32x64_avx2,
808                 aom_dc_top_predictor_32x64_avx2,
809                 aom_dc_128_predictor_32x64_avx2, aom_v_predictor_32x64_avx2,
810                 NULL, aom_paeth_predictor_32x64_avx2, NULL, NULL, NULL)
811 #endif  // HAVE_AVX2
812 
813 #if HAVE_NEON
814 INTRA_PRED_TEST(NEON, TX_32X32, aom_dc_predictor_32x32_neon,
815                 aom_dc_left_predictor_32x32_neon,
816                 aom_dc_top_predictor_32x32_neon,
817                 aom_dc_128_predictor_32x32_neon, aom_v_predictor_32x32_neon,
818                 aom_h_predictor_32x32_neon, NULL, NULL, NULL, NULL)
819 #endif  // HAVE_NEON
820 
821 #if HAVE_MSA
822 INTRA_PRED_TEST(MSA, TX_32X32, aom_dc_predictor_32x32_msa,
823                 aom_dc_left_predictor_32x32_msa, aom_dc_top_predictor_32x32_msa,
824                 aom_dc_128_predictor_32x32_msa, aom_v_predictor_32x32_msa,
825                 aom_h_predictor_32x32_msa, NULL, NULL, NULL, NULL)
826 #endif  // HAVE_MSA
827 
828 // -----------------------------------------------------------------------------
829 // 64x64, 64x32, 64x16
830 
831 INTRA_PRED_TEST(C_1, TX_64X64, aom_dc_predictor_64x64_c,
832                 aom_dc_left_predictor_64x64_c, aom_dc_top_predictor_64x64_c,
833                 aom_dc_128_predictor_64x64_c, aom_v_predictor_64x64_c,
834                 aom_h_predictor_64x64_c, aom_paeth_predictor_64x64_c,
835                 aom_smooth_predictor_64x64_c, aom_smooth_v_predictor_64x64_c,
836                 aom_smooth_h_predictor_64x64_c)
837 
838 INTRA_PRED_TEST(C_2, TX_64X32, aom_dc_predictor_64x32_c,
839                 aom_dc_left_predictor_64x32_c, aom_dc_top_predictor_64x32_c,
840                 aom_dc_128_predictor_64x32_c, aom_v_predictor_64x32_c,
841                 aom_h_predictor_64x32_c, aom_paeth_predictor_64x32_c,
842                 aom_smooth_predictor_64x32_c, aom_smooth_v_predictor_64x32_c,
843                 aom_smooth_h_predictor_64x32_c)
844 
845 #if !CONFIG_REALTIME_ONLY
846 INTRA_PRED_TEST(C_3, TX_64X16, aom_dc_predictor_64x16_c,
847                 aom_dc_left_predictor_64x16_c, aom_dc_top_predictor_64x16_c,
848                 aom_dc_128_predictor_64x16_c, aom_v_predictor_64x16_c,
849                 aom_h_predictor_64x16_c, aom_paeth_predictor_64x16_c,
850                 aom_smooth_predictor_64x16_c, aom_smooth_v_predictor_64x16_c,
851                 aom_smooth_h_predictor_64x16_c)
852 #endif
853 
854 #if HAVE_SSE2
855 INTRA_PRED_TEST(SSE2_4, TX_64X64, aom_dc_predictor_64x64_sse2,
856                 aom_dc_left_predictor_64x64_sse2,
857                 aom_dc_top_predictor_64x64_sse2,
858                 aom_dc_128_predictor_64x64_sse2, aom_v_predictor_64x64_sse2,
859                 aom_h_predictor_64x64_sse2, NULL, NULL, NULL, NULL)
860 INTRA_PRED_TEST(SSE2_5, TX_64X32, aom_dc_predictor_64x32_sse2,
861                 aom_dc_left_predictor_64x32_sse2,
862                 aom_dc_top_predictor_64x32_sse2,
863                 aom_dc_128_predictor_64x32_sse2, aom_v_predictor_64x32_sse2,
864                 aom_h_predictor_64x32_sse2, NULL, NULL, NULL, NULL)
865 #if !CONFIG_REALTIME_ONLY
866 INTRA_PRED_TEST(SSE2_6, TX_64X16, aom_dc_predictor_64x16_sse2,
867                 aom_dc_left_predictor_64x16_sse2,
868                 aom_dc_top_predictor_64x16_sse2,
869                 aom_dc_128_predictor_64x16_sse2, aom_v_predictor_64x16_sse2,
870                 aom_h_predictor_64x16_sse2, NULL, NULL, NULL, NULL)
871 #endif
872 #endif
873 
874 #if HAVE_SSSE3
875 INTRA_PRED_TEST(SSSE3_4, TX_64X64, NULL, NULL, NULL, NULL, NULL, NULL,
876                 aom_paeth_predictor_64x64_ssse3,
877                 aom_smooth_predictor_64x64_ssse3,
878                 aom_smooth_v_predictor_64x64_ssse3,
879                 aom_smooth_h_predictor_64x64_ssse3)
880 INTRA_PRED_TEST(SSSE3_5, TX_64X32, NULL, NULL, NULL, NULL, NULL, NULL,
881                 aom_paeth_predictor_64x32_ssse3,
882                 aom_smooth_predictor_64x32_ssse3,
883                 aom_smooth_v_predictor_64x32_ssse3,
884                 aom_smooth_h_predictor_64x32_ssse3)
885 #if !CONFIG_REALTIME_ONLY
886 INTRA_PRED_TEST(SSSE3_6, TX_64X16, NULL, NULL, NULL, NULL, NULL, NULL,
887                 aom_paeth_predictor_64x16_ssse3,
888                 aom_smooth_predictor_64x16_ssse3,
889                 aom_smooth_v_predictor_64x16_ssse3,
890                 aom_smooth_h_predictor_64x16_ssse3)
891 #endif
892 #endif
893 
894 #if HAVE_AVX2
895 INTRA_PRED_TEST(AVX2_4, TX_64X64, aom_dc_predictor_64x64_avx2,
896                 aom_dc_left_predictor_64x64_avx2,
897                 aom_dc_top_predictor_64x64_avx2,
898                 aom_dc_128_predictor_64x64_avx2, aom_v_predictor_64x64_avx2,
899                 NULL, aom_paeth_predictor_64x64_avx2, NULL, NULL, NULL)
900 INTRA_PRED_TEST(AVX2_5, TX_64X32, aom_dc_predictor_64x32_avx2,
901                 aom_dc_left_predictor_64x32_avx2,
902                 aom_dc_top_predictor_64x32_avx2,
903                 aom_dc_128_predictor_64x32_avx2, aom_v_predictor_64x32_avx2,
904                 NULL, aom_paeth_predictor_64x32_avx2, NULL, NULL, NULL)
905 #if !CONFIG_REALTIME_ONLY
906 INTRA_PRED_TEST(AVX2_6, TX_64X16, aom_dc_predictor_64x16_avx2,
907                 aom_dc_left_predictor_64x16_avx2,
908                 aom_dc_top_predictor_64x16_avx2,
909                 aom_dc_128_predictor_64x16_avx2, aom_v_predictor_64x16_avx2,
910                 NULL, aom_paeth_predictor_64x16_avx2, NULL, NULL, NULL)
911 #endif
912 #endif
913 
914 #if CONFIG_AV1_HIGHBITDEPTH
915 // -----------------------------------------------------------------------------
916 // High Bitdepth
917 namespace {
918 
919 typedef void (*AvxHighbdPredFunc)(uint16_t *dst, ptrdiff_t y_stride,
920                                   const uint16_t *above, const uint16_t *left,
921                                   int bd);
922 
923 typedef IntraPredTestMem<uint16_t> Av1HighbdIntraPredTestMem;
924 
TestHighbdIntraPred(TX_SIZE tx_size,AvxHighbdPredFunc const * pred_funcs,const char * const signatures[])925 void TestHighbdIntraPred(TX_SIZE tx_size, AvxHighbdPredFunc const *pred_funcs,
926                          const char *const signatures[]) {
927   const int block_width = tx_size_wide[tx_size];
928   const int block_height = tx_size_high[tx_size];
929   const int num_pixels_per_test =
930       block_width * block_height * kNumAv1IntraFuncs;
931   const int kNumTests = static_cast<int>(2.e10 / num_pixels_per_test);
932   Av1HighbdIntraPredTestMem intra_pred_test_mem;
933   const int bd = 12;
934   intra_pred_test_mem.Init(block_width, block_height, bd);
935 
936   for (int k = 0; k < kNumAv1IntraFuncs; ++k) {
937     if (pred_funcs[k] == NULL) continue;
938     memcpy(intra_pred_test_mem.src, intra_pred_test_mem.ref_src,
939            sizeof(intra_pred_test_mem.src));
940     aom_usec_timer timer;
941     aom_usec_timer_start(&timer);
942     for (int num_tests = 0; num_tests < kNumTests; ++num_tests) {
943       pred_funcs[k](intra_pred_test_mem.src, intra_pred_test_mem.stride,
944                     intra_pred_test_mem.above, intra_pred_test_mem.left, bd);
945     }
946     aom_usec_timer_mark(&timer);
947     const int elapsed_time =
948         static_cast<int>(aom_usec_timer_elapsed(&timer) / 1000);
949     CheckMd5Signature(
950         tx_size, true, signatures, intra_pred_test_mem.src,
951         intra_pred_test_mem.num_pixels * sizeof(*intra_pred_test_mem.src),
952         elapsed_time, k);
953   }
954 }
955 
956 static const char *const kHighbdSignatures[TX_SIZES_ALL][kNumAv1IntraFuncs] = {
957   {
958       // 4X4
959       "11f74af6c5737df472f3275cbde062fa",
960       "51bea056b6447c93f6eb8f6b7e8f6f71",
961       "27e97f946766331795886f4de04c5594",
962       "53ab15974b049111fb596c5168ec7e3f",
963       "f0b640bb176fbe4584cf3d32a9b0320a",
964       "729783ca909e03afd4b47111c80d967b",
965       "6e30009c45474a22032678b1bd579c8f",
966       "e57cba016d808aa8a35619df2a65f049",
967       "55a6c37f39afcbbf5abca4a985b96459",
968       "a623d45b37dafec1f8a75c4c5218913d",
969   },
970   {
971       // 8X8
972       "03da8829fe94663047fd108c5fcaa71d",
973       "ecdb37b8120a2d3a4c706b016bd1bfd7",
974       "1d4543ed8d2b9368cb96898095fe8a75",
975       "f791c9a67b913cbd82d9da8ecede30e2",
976       "065c70646f4dbaff913282f55a45a441",
977       "51f87123616662ef7c35691497dfd0ba",
978       "85c01ba03df68f9ece7bd3fa0f8980e6",
979       "ad19b7dac092f56df6d054e1f67f21e7",
980       "0edc415b5dd7299f7a34fb9f71d31d78",
981       "2bc8ec19e9f4b77a64b8a0a1f6aec7e7",
982   },
983   {
984       // 16X16
985       "e33cb3f56a878e2fddb1b2fc51cdd275",
986       "c7bff6f04b6052c8ab335d726dbbd52d",
987       "d0b0b47b654a9bcc5c6008110a44589b",
988       "78f5da7b10b2b9ab39f114a33b6254e9",
989       "c78e31d23831abb40d6271a318fdd6f3",
990       "90d1347f4ec9198a0320daecb6ff90b8",
991       "e63ded54ab3d0e8728b6f24d4f01e53f",
992       "35ce21fbe0ea114c089fc3489a78155d",
993       "f277f6ef8e4d717f1f0dfe2706ac197d",
994       "e8014d3f41256976c02e0f1e622ba2b9",
995   },
996   {
997       // 32X32
998       "a3e8056ba7e36628cce4917cd956fedd",
999       "cc7d3024fe8748b512407edee045377e",
1000       "2aab0a0f330a1d3e19b8ecb8f06387a3",
1001       "a547bc3fb7b06910bf3973122a426661",
1002       "26f712514da95042f93d6e8dc8e431dc",
1003       "bb08c6e16177081daa3d936538dbc2e3",
1004       "84bf83f94a51b33654ca940c6f8bc057",
1005       "7168b03fc31bf29596a344d6a35d007c",
1006       "b073a70d3672f1282236994f5d12e94b",
1007       "c51607aebad5dcb3c1e3b58ef9e5b84e",
1008   },
1009   {
1010       // 64X64
1011       "a6baa0d4bfb2269a94c7a38f86a4bccf",
1012       "3f1ef5f473a49eba743f17a3324adf9d",
1013       "12ac11889ae5f55b7781454efd706a6a",
1014       "d9a906c0e692b22e1b4414e71a704b7e",
1015       "47d4cadd56f70c11ff8f3e5d8df81161",
1016       "de997744cf24c16c5ac2a36b02b351cc",
1017       "23781211ae178ddeb6c4bb97a6bd7d83",
1018       "a79d2e28340ca34b9e37daabbf030f63",
1019       "0372bd3ddfc258750a6ac106b70587f4",
1020       "228ef625d9460cbf6fa253a16a730976",
1021   },
1022   {
1023       // 4X8
1024       "22d519b796d59644043466320e4ccd14",
1025       "09513a738c49b3f9542d27f34abbe1d5",
1026       "807ae5e8813443ff01e71be6efacfb69",
1027       "cbfa18d0293430b6e9708b0be1fd2394",
1028       "346c354c34ec7fa780b576db355dab88",
1029       "f97dae85c35359632380b09ca98d611e",
1030       "698ae351d8896d89ed9e4e67b6e53eda",
1031       "dcc197034a9c45a3d8238bf085835f4e",
1032       "7a35e2c42ffdc2efc2d6d1d75a100fc7",
1033       "41ab6cebd4516c87a91b2a593e2c2506",
1034   },
1035   {
1036       // 8X4
1037       "d58cd4c4bf3b7bbaa5db5e1a5622ec78",
1038       "6e572c35aa782d00cafcb99e9ea047ea",
1039       "e8c22a3702b416dc9ab974505afbed09",
1040       "aaa4e4762a795aad7ad74de0c662c4e4",
1041       "a19f9101967383c3dcbd516dc317a291",
1042       "9ab8cb91f1a595b9ebe3fe8de58031aa",
1043       "2cf9021d5f1169268699807ee118b65f",
1044       "ee9605fcbd6fb871f1c5cd81a6989327",
1045       "b4871af8316089e3e23522175df7e93f",
1046       "d33301e1c2cb173be46792a22d19881a",
1047   },
1048   {
1049       // 8X16
1050       "4562de1d0336610880fdd5685498a9ec",
1051       "16310fa7076394f16fc85c4b149d89c9",
1052       "0e94af88e1dc573b6f0f499cddd1f530",
1053       "dfd245ee20d091c67809160340365aa9",
1054       "d3562504327f70c096c5be23fd8a3747",
1055       "601b853558502acbb5135eadd2da117a",
1056       "3c624345a723a1b2b1bea05a6a08bc99",
1057       "2a9c781de609e0184cc7ab442050f4e5",
1058       "0ddc5035c22252747126b61fc238c74d",
1059       "e43f5d83bab759af69c7b6773fc8f9b2",
1060   },
1061   {
1062       // 16X8
1063       "a57d6b5a9bfd30c29591d8717ace9c51",
1064       "f5907ba97ee6c53e339e953fc8d845ee",
1065       "ea3aa727913ce45af06f89dd1808db5f",
1066       "408af4f23e48d14b48ee35ae094fcd18",
1067       "85c41cbcb5d744f7961e8950026fbffe",
1068       "8a4e588a837638887ba671f8d4910485",
1069       "b792d8826b67a21757ea7097cff9e05b",
1070       "f94ce7101bb87fd3bb9312112527dbf4",
1071       "688c6660a6dc6fa61fa1aa38e708c209",
1072       "0cdf641b4f81d69509c92ae0b93ef5ff",
1073   },
1074   {
1075       // 16X32
1076       "aee4b3b0e3cc02d48e2c40d77f807927",
1077       "8baef2b2e789f79c8df9d90ad10f34a4",
1078       "038c38ee3c4f090bb8d736eab136aafc",
1079       "1a3de2aaeaffd68a9fd6c7f6557b83f3",
1080       "385c6e0ea29421dd81011a2934641e26",
1081       "6cf96c285d1a2d4787f955dad715b08c",
1082       "2d7f75dcd73b9528c8396279ff09ff3a",
1083       "5a63cd1841e4ed470e4ca5ef845f2281",
1084       "610d899ca945fbead33287d4335a8b32",
1085       "6bafaad81fce37be46730187e78d8b11",
1086   },
1087   {
1088       // 32X16
1089       "290b23c9f5a1de7905bfa71a942da29b",
1090       "701e7b82593c66da5052fc4b6afd79ce",
1091       "4da828c5455cd246735a663fbb204989",
1092       "e3fbeaf234efece8dbd752b77226200c",
1093       "4d1d8c969f05155a7e7e84cf7aad021b",
1094       "c22e4877c2c946d5bdc0d542e29e70cf",
1095       "8ac1ce815e7780500f842b0beb0bb980",
1096       "9fee2e2502b507f25bfad30a55b0b610",
1097       "4ced9c212ec6f9956e27f68a91b59fef",
1098       "4a7a0b93f138bb0863e4e465b01ec0b1",
1099   },
1100   {
1101       // 32X64
1102       "ad9cfc395a5c5644a21d958c7274ac14",
1103       "f29d6d03c143ddf96fef04c19f2c8333",
1104       "a8bdc852ef704dd4975c61893e8fbc3f",
1105       "7d0bd7dea26226741dbca9a97f27fa74",
1106       "45c27c5cca9a91b6ae8379feb0881c9f",
1107       "8a0b78df1e001b85c874d686eac4aa1b",
1108       "ce9fa75fac54a3f6c0cc3f2083b938f1",
1109       "c0dca10d88762c954af18dc9e3791a39",
1110       "61df229eddfccab913b8fda4bb02f9ac",
1111       "4f4df6bc8d50a5600b573f0e44d70e66",
1112   },
1113   {
1114       // 64X32
1115       "db9d82921fd88b24fdff6f849f2f9c87",
1116       "5ecc7fdc52d2f575ad4f2d0e9e6b1e11",
1117       "b4581311a0a73d95dfac7f8f44591032",
1118       "68bd283cfd1a125f6b2ee47cee874d36",
1119       "804179f05c032908a5e36077bb87c994",
1120       "fc5fd041a8ee779015394d0c066ee43c",
1121       "68f5579ccadfe9a1baafb158334a3db2",
1122       "fe237e45e215ab06d79046da9ad71e84",
1123       "9a8a938a6824551bf7d21b8fd1d70ea1",
1124       "eb7332f2017cd96882c76e7136aeaf53",
1125   },
1126   {
1127       // 4X16
1128       "7bafa307d507747b8132e7735b7f1c73",
1129       "e58bc2d8213a97d1fea9cfb73d7a9633",
1130       "435f8a8e8bbf14dbf2fe16b2be9e97aa",
1131       "1d0e767b68d84acbfb50b7a04e633836",
1132       "5f713bd7b324fe73bb7063e35ee14e5e",
1133       "0dac4e1fa3d59814202715468c01ed56",
1134       "47709d1db4a330c7a8900f450e6fddd1",
1135       "258e0b930bb27db28f05da9cf7d1ee7c",
1136       "36cf030fbae767912593efea045bfff5",
1137       "248d7aceabb7499febae663fae41a920",
1138   },
1139   {
1140       // 16X4
1141       "04dde98e632670e393704742c89f9067",
1142       "8c72543f1664651ae1fa08e2ac0adb9b",
1143       "2354a2cdc2773aa2df8ab4010db1be39",
1144       "6300ad3221c26da39b10e0e6d87ee3be",
1145       "8ea30b661c6ba60b28d3167f19e449b8",
1146       "fb6c1e4ff101a371cede63c2955cdb7e",
1147       "a517c06433d6d7927b16a72184a23e92",
1148       "393828be5d62ab6c48668bea5e2f801a",
1149       "b1e510c542013eb9d6fb188dea2ce90a",
1150       "569a8f2fe01679ca216535ecbcdccb62",
1151   },
1152   {
1153       // 8X32
1154       "9d541865c185ca7607852852613ac1fc",
1155       "b96be67f08c6b5fa5ebd3411299c2f7c",
1156       "75a2dcf50004b9d188849b048239767e",
1157       "429492ff415c9fd9b050d73b2ad500f8",
1158       "64b3606c1ccd036bd766bd5711392cf4",
1159       "cb59844a0f01660ac955bae3511f1100",
1160       "3e076155b7a70e8828618e3f33b51e3d",
1161       "ed2d1f597ab7c50beff690f737cf9726",
1162       "7909c6a26aaf20c59d996d3e5b5f9c29",
1163       "965798807240c98c6f7cc9b457ed0773",
1164   },
1165   {
1166       // 32X8
1167       "36f391aa31619eec1f4d9ee95ea454cc",
1168       "b82648f14eeba2527357cb50bc3223cb",
1169       "7a7b2adf429125e8bee9d1d00a66e13f",
1170       "4198e4d6ba503b7cc2d7e96bb845f661",
1171       "96c160d2ec1be9fe0cdea9682f14d257",
1172       "19a450bcebaa75afb4fc6bd1fd6434af",
1173       "2bd2e35967d43d0ec1c6587a36f204d5",
1174       "49799a99aa4ccfbd989bee92a99422f1",
1175       "955530e99813812a74659edeac3f5475",
1176       "f0316b84e378a19cd11b19a6e40b2914",
1177   },
1178   {
1179       // 16X64
1180       "8cba1b70a0bde29e8ef235cedc5faa7d",
1181       "96d00ddc7537bf7f196006591b733b4e",
1182       "cbf69d5d157c9f3355a4757b1d6e3414",
1183       "3ac1f642019493dec1b737d7a3a1b4e5",
1184       "35f9ee300d7fa3c97338e81a6f21dcd4",
1185       "aae335442e77c8ebc280f16ea50ba9c7",
1186       "a6140fdac2278644328be094d88731db",
1187       "2df93621b6ff100f7008432d509f4161",
1188       "c77bf5aee39e7ed4a3dd715f816f452a",
1189       "02109bd63557d90225c32a8f1338258e",
1190   },
1191   {
1192       // 64X16
1193       "a5e2f9fb685d5f4a048e9a96affd25a4",
1194       "1348f249690d9eefe09d9ad7ead2c801",
1195       "525da4b187acd81b1ff1116b60461141",
1196       "e99d072de858094c98b01bd4a6772634",
1197       "873bfa9dc24693f19721f7c8d527f7d3",
1198       "0acfc6507bd3468e9679efc127d6e4b9",
1199       "57d03f8d079c7264854e22ac1157cfae",
1200       "6c2c4036f70c7d957a9399b5436c0774",
1201       "42b8e4a97b7f8416c72a5148c031c0b1",
1202       "a38a2c5f79993dfae8530e9e25800893",
1203   },
1204 };
1205 
1206 }  // namespace
1207 
1208 #define HIGHBD_INTRA_PRED_TEST(arch, tx_size, dc, dc_left, dc_top, dc_128, v, \
1209                                h, paeth, smooth, smooth_v, smooth_h)          \
1210   TEST(arch, DISABLED_##TestHighbdIntraPred_##tx_size) {                      \
1211     static const AvxHighbdPredFunc aom_intra_pred[] = {                       \
1212       dc, dc_left, dc_top, dc_128, v, h, paeth, smooth, smooth_v, smooth_h    \
1213     };                                                                        \
1214     TestHighbdIntraPred(tx_size, aom_intra_pred, kHighbdSignatures[tx_size]); \
1215   }
1216 
1217 // -----------------------------------------------------------------------------
1218 // 4x4, 4x8, 4x16
1219 
1220 HIGHBD_INTRA_PRED_TEST(
1221     C_1, TX_4X4, aom_highbd_dc_predictor_4x4_c,
1222     aom_highbd_dc_left_predictor_4x4_c, aom_highbd_dc_top_predictor_4x4_c,
1223     aom_highbd_dc_128_predictor_4x4_c, aom_highbd_v_predictor_4x4_c,
1224     aom_highbd_h_predictor_4x4_c, aom_highbd_paeth_predictor_4x4_c,
1225     aom_highbd_smooth_predictor_4x4_c, aom_highbd_smooth_v_predictor_4x4_c,
1226     aom_highbd_smooth_h_predictor_4x4_c)
1227 
1228 HIGHBD_INTRA_PRED_TEST(
1229     C_2, TX_4X8, aom_highbd_dc_predictor_4x8_c,
1230     aom_highbd_dc_left_predictor_4x8_c, aom_highbd_dc_top_predictor_4x8_c,
1231     aom_highbd_dc_128_predictor_4x8_c, aom_highbd_v_predictor_4x8_c,
1232     aom_highbd_h_predictor_4x8_c, aom_highbd_paeth_predictor_4x8_c,
1233     aom_highbd_smooth_predictor_4x8_c, aom_highbd_smooth_v_predictor_4x8_c,
1234     aom_highbd_smooth_h_predictor_4x8_c)
1235 #if !CONFIG_REALTIME_ONLY
1236 HIGHBD_INTRA_PRED_TEST(
1237     C_3, TX_4X16, aom_highbd_dc_predictor_4x16_c,
1238     aom_highbd_dc_left_predictor_4x16_c, aom_highbd_dc_top_predictor_4x16_c,
1239     aom_highbd_dc_128_predictor_4x16_c, aom_highbd_v_predictor_4x16_c,
1240     aom_highbd_h_predictor_4x16_c, aom_highbd_paeth_predictor_4x16_c,
1241     aom_highbd_smooth_predictor_4x16_c, aom_highbd_smooth_v_predictor_4x16_c,
1242     aom_highbd_smooth_h_predictor_4x16_c)
1243 #endif
1244 #if HAVE_SSE2
1245 HIGHBD_INTRA_PRED_TEST(SSE2_1, TX_4X4, aom_highbd_dc_predictor_4x4_sse2,
1246                        aom_highbd_dc_left_predictor_4x4_sse2,
1247                        aom_highbd_dc_top_predictor_4x4_sse2,
1248                        aom_highbd_dc_128_predictor_4x4_sse2,
1249                        aom_highbd_v_predictor_4x4_sse2,
1250                        aom_highbd_h_predictor_4x4_sse2, NULL, NULL, NULL, NULL)
1251 
1252 HIGHBD_INTRA_PRED_TEST(SSE2_2, TX_4X8, aom_highbd_dc_predictor_4x8_sse2,
1253                        aom_highbd_dc_left_predictor_4x8_sse2,
1254                        aom_highbd_dc_top_predictor_4x8_sse2,
1255                        aom_highbd_dc_128_predictor_4x8_sse2,
1256                        aom_highbd_v_predictor_4x8_sse2,
1257                        aom_highbd_h_predictor_4x8_sse2, NULL, NULL, NULL, NULL)
1258 #endif
1259 
1260 // -----------------------------------------------------------------------------
1261 // 8x8, 8x4, 8x16, 8x32
1262 
1263 HIGHBD_INTRA_PRED_TEST(
1264     C_1, TX_8X8, aom_highbd_dc_predictor_8x8_c,
1265     aom_highbd_dc_left_predictor_8x8_c, aom_highbd_dc_top_predictor_8x8_c,
1266     aom_highbd_dc_128_predictor_8x8_c, aom_highbd_v_predictor_8x8_c,
1267     aom_highbd_h_predictor_8x8_c, aom_highbd_paeth_predictor_8x8_c,
1268     aom_highbd_smooth_predictor_8x8_c, aom_highbd_smooth_v_predictor_8x8_c,
1269     aom_highbd_smooth_h_predictor_8x8_c)
1270 
1271 HIGHBD_INTRA_PRED_TEST(
1272     C_2, TX_8X4, aom_highbd_dc_predictor_8x4_c,
1273     aom_highbd_dc_left_predictor_8x4_c, aom_highbd_dc_top_predictor_8x4_c,
1274     aom_highbd_dc_128_predictor_8x4_c, aom_highbd_v_predictor_8x4_c,
1275     aom_highbd_h_predictor_8x4_c, aom_highbd_paeth_predictor_8x4_c,
1276     aom_highbd_smooth_predictor_8x4_c, aom_highbd_smooth_v_predictor_8x4_c,
1277     aom_highbd_smooth_h_predictor_8x4_c)
1278 
1279 HIGHBD_INTRA_PRED_TEST(
1280     C_3, TX_8X16, aom_highbd_dc_predictor_8x16_c,
1281     aom_highbd_dc_left_predictor_8x16_c, aom_highbd_dc_top_predictor_8x16_c,
1282     aom_highbd_dc_128_predictor_8x16_c, aom_highbd_v_predictor_8x16_c,
1283     aom_highbd_h_predictor_8x16_c, aom_highbd_paeth_predictor_8x16_c,
1284     aom_highbd_smooth_predictor_8x16_c, aom_highbd_smooth_v_predictor_8x16_c,
1285     aom_highbd_smooth_h_predictor_8x16_c)
1286 #if !CONFIG_REALTIME_ONLY
1287 HIGHBD_INTRA_PRED_TEST(
1288     C_4, TX_8X32, aom_highbd_dc_predictor_8x32_c,
1289     aom_highbd_dc_left_predictor_8x32_c, aom_highbd_dc_top_predictor_8x32_c,
1290     aom_highbd_dc_128_predictor_8x32_c, aom_highbd_v_predictor_8x32_c,
1291     aom_highbd_h_predictor_8x32_c, aom_highbd_paeth_predictor_8x32_c,
1292     aom_highbd_smooth_predictor_8x32_c, aom_highbd_smooth_v_predictor_8x32_c,
1293     aom_highbd_smooth_h_predictor_8x32_c)
1294 #endif
1295 #if HAVE_SSE2
1296 HIGHBD_INTRA_PRED_TEST(SSE2_1, TX_8X8, aom_highbd_dc_predictor_8x8_sse2,
1297                        aom_highbd_dc_left_predictor_8x8_sse2,
1298                        aom_highbd_dc_top_predictor_8x8_sse2,
1299                        aom_highbd_dc_128_predictor_8x8_sse2,
1300                        aom_highbd_v_predictor_8x8_sse2,
1301                        aom_highbd_h_predictor_8x8_sse2, NULL, NULL, NULL, NULL)
1302 HIGHBD_INTRA_PRED_TEST(SSE2_2, TX_8X4, aom_highbd_dc_predictor_8x4_sse2,
1303                        aom_highbd_dc_left_predictor_8x4_sse2,
1304                        aom_highbd_dc_top_predictor_8x4_sse2,
1305                        aom_highbd_dc_128_predictor_8x4_sse2,
1306                        aom_highbd_v_predictor_8x4_sse2,
1307                        aom_highbd_h_predictor_8x4_sse2, NULL, NULL, NULL, NULL)
1308 HIGHBD_INTRA_PRED_TEST(SSE2_3, TX_8X16, aom_highbd_dc_predictor_8x16_sse2,
1309                        aom_highbd_dc_left_predictor_8x16_sse2,
1310                        aom_highbd_dc_top_predictor_8x16_sse2,
1311                        aom_highbd_dc_128_predictor_8x16_sse2,
1312                        aom_highbd_v_predictor_8x16_sse2,
1313                        aom_highbd_h_predictor_8x16_sse2, NULL, NULL, NULL, NULL)
1314 #endif
1315 
1316 #if HAVE_SSSE3
1317 HIGHBD_INTRA_PRED_TEST(SSSE3, TX_8X8, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1318                        NULL, NULL, NULL)
1319 #endif
1320 
1321 // -----------------------------------------------------------------------------
1322 // 16x16, 16x8, 16x32, 16x4, 16x64
1323 
1324 HIGHBD_INTRA_PRED_TEST(
1325     C_1, TX_16X16, aom_highbd_dc_predictor_16x16_c,
1326     aom_highbd_dc_left_predictor_16x16_c, aom_highbd_dc_top_predictor_16x16_c,
1327     aom_highbd_dc_128_predictor_16x16_c, aom_highbd_v_predictor_16x16_c,
1328     aom_highbd_h_predictor_16x16_c, aom_highbd_paeth_predictor_16x16_c,
1329     aom_highbd_smooth_predictor_16x16_c, aom_highbd_smooth_v_predictor_16x16_c,
1330     aom_highbd_smooth_h_predictor_16x16_c)
1331 
1332 HIGHBD_INTRA_PRED_TEST(
1333     C_2, TX_16X8, aom_highbd_dc_predictor_16x8_c,
1334     aom_highbd_dc_left_predictor_16x8_c, aom_highbd_dc_top_predictor_16x8_c,
1335     aom_highbd_dc_128_predictor_16x8_c, aom_highbd_v_predictor_16x8_c,
1336     aom_highbd_h_predictor_16x8_c, aom_highbd_paeth_predictor_16x8_c,
1337     aom_highbd_smooth_predictor_16x8_c, aom_highbd_smooth_v_predictor_16x8_c,
1338     aom_highbd_smooth_h_predictor_16x8_c)
1339 
1340 HIGHBD_INTRA_PRED_TEST(
1341     C_3, TX_16X32, aom_highbd_dc_predictor_16x32_c,
1342     aom_highbd_dc_left_predictor_16x32_c, aom_highbd_dc_top_predictor_16x32_c,
1343     aom_highbd_dc_128_predictor_16x32_c, aom_highbd_v_predictor_16x32_c,
1344     aom_highbd_h_predictor_16x32_c, aom_highbd_paeth_predictor_16x32_c,
1345     aom_highbd_smooth_predictor_16x32_c, aom_highbd_smooth_v_predictor_16x32_c,
1346     aom_highbd_smooth_h_predictor_16x32_c)
1347 
1348 #if !CONFIG_REALTIME_ONLY
1349 HIGHBD_INTRA_PRED_TEST(
1350     C_4, TX_16X4, aom_highbd_dc_predictor_16x4_c,
1351     aom_highbd_dc_left_predictor_16x4_c, aom_highbd_dc_top_predictor_16x4_c,
1352     aom_highbd_dc_128_predictor_16x4_c, aom_highbd_v_predictor_16x4_c,
1353     aom_highbd_h_predictor_16x4_c, aom_highbd_paeth_predictor_16x4_c,
1354     aom_highbd_smooth_predictor_16x4_c, aom_highbd_smooth_v_predictor_16x4_c,
1355     aom_highbd_smooth_h_predictor_16x4_c)
1356 
1357 HIGHBD_INTRA_PRED_TEST(
1358     C_5, TX_16X64, aom_highbd_dc_predictor_16x64_c,
1359     aom_highbd_dc_left_predictor_16x64_c, aom_highbd_dc_top_predictor_16x64_c,
1360     aom_highbd_dc_128_predictor_16x64_c, aom_highbd_v_predictor_16x64_c,
1361     aom_highbd_h_predictor_16x64_c, aom_highbd_paeth_predictor_16x64_c,
1362     aom_highbd_smooth_predictor_16x64_c, aom_highbd_smooth_v_predictor_16x64_c,
1363     aom_highbd_smooth_h_predictor_16x64_c)
1364 #endif
1365 
1366 #if HAVE_SSE2
1367 HIGHBD_INTRA_PRED_TEST(SSE2_1, TX_16X16, aom_highbd_dc_predictor_16x16_sse2,
1368                        aom_highbd_dc_left_predictor_16x16_sse2,
1369                        aom_highbd_dc_top_predictor_16x16_sse2,
1370                        aom_highbd_dc_128_predictor_16x16_sse2,
1371                        aom_highbd_v_predictor_16x16_sse2,
1372                        aom_highbd_h_predictor_16x16_sse2, NULL, NULL, NULL,
1373                        NULL)
1374 HIGHBD_INTRA_PRED_TEST(SSE2_2, TX_16X8, aom_highbd_dc_predictor_16x8_sse2,
1375                        aom_highbd_dc_left_predictor_16x8_sse2,
1376                        aom_highbd_dc_top_predictor_16x8_sse2,
1377                        aom_highbd_dc_128_predictor_16x8_sse2,
1378                        aom_highbd_v_predictor_16x8_sse2,
1379                        aom_highbd_h_predictor_16x8_sse2, NULL, NULL, NULL, NULL)
1380 HIGHBD_INTRA_PRED_TEST(SSE2_3, TX_16X32, aom_highbd_dc_predictor_16x32_sse2,
1381                        aom_highbd_dc_left_predictor_16x32_sse2,
1382                        aom_highbd_dc_top_predictor_16x32_sse2,
1383                        aom_highbd_dc_128_predictor_16x32_sse2,
1384                        aom_highbd_v_predictor_16x32_sse2,
1385                        aom_highbd_h_predictor_16x32_sse2, NULL, NULL, NULL,
1386                        NULL)
1387 #endif
1388 
1389 #if HAVE_SSSE3
1390 HIGHBD_INTRA_PRED_TEST(SSSE3_1, TX_16X16, NULL, NULL, NULL, NULL, NULL, NULL,
1391                        NULL, NULL, NULL, NULL)
1392 #endif
1393 
1394 #if HAVE_AVX2
1395 HIGHBD_INTRA_PRED_TEST(AVX2_1, TX_16X16, NULL, NULL, NULL, NULL, NULL, NULL,
1396                        NULL, NULL, NULL, NULL)
1397 
1398 HIGHBD_INTRA_PRED_TEST(AVX2_2, TX_16X8, NULL, NULL, NULL, NULL, NULL, NULL,
1399                        NULL, NULL, NULL, NULL)
1400 
1401 HIGHBD_INTRA_PRED_TEST(AVX2_3, TX_16X32, NULL, NULL, NULL, NULL, NULL, NULL,
1402                        NULL, NULL, NULL, NULL)
1403 #endif
1404 
1405 // -----------------------------------------------------------------------------
1406 // 32x32, 32x16, 32x64, 32x8
1407 
1408 HIGHBD_INTRA_PRED_TEST(
1409     C_1, TX_32X32, aom_highbd_dc_predictor_32x32_c,
1410     aom_highbd_dc_left_predictor_32x32_c, aom_highbd_dc_top_predictor_32x32_c,
1411     aom_highbd_dc_128_predictor_32x32_c, aom_highbd_v_predictor_32x32_c,
1412     aom_highbd_h_predictor_32x32_c, aom_highbd_paeth_predictor_32x32_c,
1413     aom_highbd_smooth_predictor_32x32_c, aom_highbd_smooth_v_predictor_32x32_c,
1414     aom_highbd_smooth_h_predictor_32x32_c)
1415 
1416 HIGHBD_INTRA_PRED_TEST(
1417     C_2, TX_32X16, aom_highbd_dc_predictor_32x16_c,
1418     aom_highbd_dc_left_predictor_32x16_c, aom_highbd_dc_top_predictor_32x16_c,
1419     aom_highbd_dc_128_predictor_32x16_c, aom_highbd_v_predictor_32x16_c,
1420     aom_highbd_h_predictor_32x16_c, aom_highbd_paeth_predictor_32x16_c,
1421     aom_highbd_smooth_predictor_32x16_c, aom_highbd_smooth_v_predictor_32x16_c,
1422     aom_highbd_smooth_h_predictor_32x16_c)
1423 
1424 HIGHBD_INTRA_PRED_TEST(
1425     C_3, TX_32X64, aom_highbd_dc_predictor_32x64_c,
1426     aom_highbd_dc_left_predictor_32x64_c, aom_highbd_dc_top_predictor_32x64_c,
1427     aom_highbd_dc_128_predictor_32x64_c, aom_highbd_v_predictor_32x64_c,
1428     aom_highbd_h_predictor_32x64_c, aom_highbd_paeth_predictor_32x64_c,
1429     aom_highbd_smooth_predictor_32x64_c, aom_highbd_smooth_v_predictor_32x64_c,
1430     aom_highbd_smooth_h_predictor_32x64_c)
1431 
1432 #if !CONFIG_REALTIME_ONLY
1433 HIGHBD_INTRA_PRED_TEST(
1434     C_4, TX_32X8, aom_highbd_dc_predictor_32x8_c,
1435     aom_highbd_dc_left_predictor_32x8_c, aom_highbd_dc_top_predictor_32x8_c,
1436     aom_highbd_dc_128_predictor_32x8_c, aom_highbd_v_predictor_32x8_c,
1437     aom_highbd_h_predictor_32x8_c, aom_highbd_paeth_predictor_32x8_c,
1438     aom_highbd_smooth_predictor_32x8_c, aom_highbd_smooth_v_predictor_32x8_c,
1439     aom_highbd_smooth_h_predictor_32x8_c)
1440 #endif
1441 
1442 #if HAVE_SSE2
1443 HIGHBD_INTRA_PRED_TEST(SSE2_1, TX_32X32, aom_highbd_dc_predictor_32x32_sse2,
1444                        aom_highbd_dc_left_predictor_32x32_sse2,
1445                        aom_highbd_dc_top_predictor_32x32_sse2,
1446                        aom_highbd_dc_128_predictor_32x32_sse2,
1447                        aom_highbd_v_predictor_32x32_sse2,
1448                        aom_highbd_h_predictor_32x32_sse2, NULL, NULL, NULL,
1449                        NULL)
1450 HIGHBD_INTRA_PRED_TEST(SSE2_2, TX_32X16, aom_highbd_dc_predictor_32x16_sse2,
1451                        aom_highbd_dc_left_predictor_32x16_sse2,
1452                        aom_highbd_dc_top_predictor_32x16_sse2,
1453                        aom_highbd_dc_128_predictor_32x16_sse2,
1454                        aom_highbd_v_predictor_32x16_sse2,
1455                        aom_highbd_h_predictor_32x16_sse2, NULL, NULL, NULL,
1456                        NULL)
1457 #endif
1458 
1459 #if HAVE_SSSE3
1460 HIGHBD_INTRA_PRED_TEST(SSSE3_1, TX_32X32, NULL, NULL, NULL, NULL, NULL, NULL,
1461                        NULL, NULL, NULL, NULL)
1462 #endif
1463 
1464 #if HAVE_AVX2
1465 HIGHBD_INTRA_PRED_TEST(AVX2_1, TX_32X32, NULL, NULL, NULL, NULL, NULL, NULL,
1466                        NULL, NULL, NULL, NULL)
1467 
1468 HIGHBD_INTRA_PRED_TEST(AVX2_2, TX_32X16, NULL, NULL, NULL, NULL, NULL, NULL,
1469                        NULL, NULL, NULL, NULL)
1470 #endif
1471 
1472 // -----------------------------------------------------------------------------
1473 // 64x64, 64x32, 64x16
1474 
1475 HIGHBD_INTRA_PRED_TEST(
1476     C_1, TX_64X64, aom_highbd_dc_predictor_64x64_c,
1477     aom_highbd_dc_left_predictor_64x64_c, aom_highbd_dc_top_predictor_64x64_c,
1478     aom_highbd_dc_128_predictor_64x64_c, aom_highbd_v_predictor_64x64_c,
1479     aom_highbd_h_predictor_64x64_c, aom_highbd_paeth_predictor_64x64_c,
1480     aom_highbd_smooth_predictor_64x64_c, aom_highbd_smooth_v_predictor_64x64_c,
1481     aom_highbd_smooth_h_predictor_64x64_c)
1482 
1483 HIGHBD_INTRA_PRED_TEST(
1484     C_2, TX_64X32, aom_highbd_dc_predictor_64x32_c,
1485     aom_highbd_dc_left_predictor_64x32_c, aom_highbd_dc_top_predictor_64x32_c,
1486     aom_highbd_dc_128_predictor_64x32_c, aom_highbd_v_predictor_64x32_c,
1487     aom_highbd_h_predictor_64x32_c, aom_highbd_paeth_predictor_64x32_c,
1488     aom_highbd_smooth_predictor_64x32_c, aom_highbd_smooth_v_predictor_64x32_c,
1489     aom_highbd_smooth_h_predictor_64x32_c)
1490 
1491 #if !CONFIG_REALTIME_ONLY
1492 HIGHBD_INTRA_PRED_TEST(
1493     C_3, TX_64X16, aom_highbd_dc_predictor_64x16_c,
1494     aom_highbd_dc_left_predictor_64x16_c, aom_highbd_dc_top_predictor_64x16_c,
1495     aom_highbd_dc_128_predictor_64x16_c, aom_highbd_v_predictor_64x16_c,
1496     aom_highbd_h_predictor_64x16_c, aom_highbd_paeth_predictor_64x16_c,
1497     aom_highbd_smooth_predictor_64x16_c, aom_highbd_smooth_v_predictor_64x16_c,
1498     aom_highbd_smooth_h_predictor_64x16_c)
1499 #endif
1500 
1501 // -----------------------------------------------------------------------------
1502 #endif  // CONFIG_AV1_HIGHBITDEPTH
1503 
1504 #include "test/test_libaom.cc"
1505