OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2015 The WebM project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 // Test and time VP9 intra-predictor functions |
| 11 |
| 12 #include <stdio.h> |
| 13 #include <string.h> |
| 14 |
| 15 #include "third_party/googletest/src/include/gtest/gtest.h" |
| 16 |
| 17 #include "./vp9_rtcd.h" |
| 18 #include "test/acm_random.h" |
| 19 #include "test/md5_helper.h" |
| 20 #include "vpx/vpx_integer.h" |
| 21 #include "vpx_ports/mem.h" |
| 22 #include "vpx_ports/vpx_timer.h" |
| 23 |
| 24 // ----------------------------------------------------------------------------- |
| 25 |
| 26 namespace { |
| 27 |
| 28 typedef void (*VpxPredFunc)(uint8_t *dst, ptrdiff_t y_stride, |
| 29 const uint8_t *above, const uint8_t *left); |
| 30 |
| 31 const int kNumVp9IntraPredFuncs = 13; |
| 32 const char *kVp9IntraPredNames[kNumVp9IntraPredFuncs] = { |
| 33 "DC_PRED", "DC_LEFT_PRED", "DC_TOP_PRED", "DC_128_PRED", "V_PRED", "H_PRED", |
| 34 "D45_PRED", "D135_PRED", "D117_PRED", "D153_PRED", "D207_PRED", "D63_PRED", |
| 35 "TM_PRED" |
| 36 }; |
| 37 |
| 38 void TestIntraPred(const char name[], VpxPredFunc const *pred_funcs, |
| 39 const char *const pred_func_names[], int num_funcs, |
| 40 const char *const signatures[], int block_size, |
| 41 int num_pixels_per_test) { |
| 42 libvpx_test::ACMRandom rnd(libvpx_test::ACMRandom::DeterministicSeed()); |
| 43 const int kBPS = 32; |
| 44 const int kTotalPixels = 32 * kBPS; |
| 45 DECLARE_ALIGNED(16, uint8_t, src[kTotalPixels]); |
| 46 DECLARE_ALIGNED(16, uint8_t, ref_src[kTotalPixels]); |
| 47 DECLARE_ALIGNED(16, uint8_t, left[kBPS]); |
| 48 DECLARE_ALIGNED(16, uint8_t, above_mem[2 * kBPS + 16]); |
| 49 uint8_t *const above = above_mem + 16; |
| 50 for (int i = 0; i < kTotalPixels; ++i) ref_src[i] = rnd.Rand8(); |
| 51 for (int i = 0; i < kBPS; ++i) left[i] = rnd.Rand8(); |
| 52 for (int i = -1; i < kBPS; ++i) above[i] = rnd.Rand8(); |
| 53 const int kNumTests = static_cast<int>(2.e10 / num_pixels_per_test); |
| 54 |
| 55 // some code assumes the top row has been extended: |
| 56 // d45/d63 C-code, for instance, but not the assembly. |
| 57 // TODO(jzern): this style of extension isn't strictly necessary. |
| 58 ASSERT_LE(block_size, kBPS); |
| 59 memset(above + block_size, above[block_size - 1], 2 * kBPS - block_size); |
| 60 |
| 61 for (int k = 0; k < num_funcs; ++k) { |
| 62 if (pred_funcs[k] == NULL) continue; |
| 63 memcpy(src, ref_src, sizeof(src)); |
| 64 vpx_usec_timer timer; |
| 65 vpx_usec_timer_start(&timer); |
| 66 for (int num_tests = 0; num_tests < kNumTests; ++num_tests) { |
| 67 pred_funcs[k](src, kBPS, above, left); |
| 68 } |
| 69 vpx_usec_timer_mark(&timer); |
| 70 const int elapsed_time = |
| 71 static_cast<int>(vpx_usec_timer_elapsed(&timer) / 1000); |
| 72 libvpx_test::MD5 md5; |
| 73 md5.Add(src, sizeof(src)); |
| 74 printf("Mode %s[%12s]: %5d ms MD5: %s\n", name, pred_func_names[k], |
| 75 elapsed_time, md5.Get()); |
| 76 EXPECT_STREQ(signatures[k], md5.Get()); |
| 77 } |
| 78 } |
| 79 |
| 80 void TestIntraPred4(VpxPredFunc const *pred_funcs) { |
| 81 static const int kNumVp9IntraFuncs = 13; |
| 82 static const char *const kSignatures[kNumVp9IntraFuncs] = { |
| 83 "4334156168b34ab599d9b5b30f522fe9", |
| 84 "bc4649d5ba47c7ff178d92e475960fb0", |
| 85 "8d316e5933326dcac24e1064794b5d12", |
| 86 "a27270fed024eafd762c95de85f4da51", |
| 87 "c33dff000d4256c2b8f3bf9e9bab14d2", |
| 88 "44d8cddc2ad8f79b8ed3306051722b4f", |
| 89 "eb54839b2bad6699d8946f01ec041cd0", |
| 90 "ecb0d56ae5f677ea45127ce9d5c058e4", |
| 91 "0b7936841f6813da818275944895b574", |
| 92 "9117972ef64f91a58ff73e1731c81db2", |
| 93 "c56d5e8c729e46825f46dd5d3b5d508a", |
| 94 "c0889e2039bcf7bcb5d2f33cdca69adc", |
| 95 "309a618577b27c648f9c5ee45252bc8f", |
| 96 }; |
| 97 TestIntraPred("Intra4", pred_funcs, kVp9IntraPredNames, kNumVp9IntraFuncs, |
| 98 kSignatures, 4, 4 * 4 * kNumVp9IntraFuncs); |
| 99 } |
| 100 |
| 101 void TestIntraPred8(VpxPredFunc const *pred_funcs) { |
| 102 static const int kNumVp9IntraFuncs = 13; |
| 103 static const char *const kSignatures[kNumVp9IntraFuncs] = { |
| 104 "7694ddeeefed887faf9d339d18850928", |
| 105 "7d726b1213591b99f736be6dec65065b", |
| 106 "19c5711281357a485591aaf9c96c0a67", |
| 107 "ba6b66877a089e71cd938e3b8c40caac", |
| 108 "802440c93317e0f8ba93fab02ef74265", |
| 109 "9e09a47a15deb0b9d8372824f9805080", |
| 110 "b7c2d8c662268c0c427da412d7b0311d", |
| 111 "78339c1c60bb1d67d248ab8c4da08b7f", |
| 112 "5c97d70f7d47de1882a6cd86c165c8a9", |
| 113 "8182bf60688b42205acd95e59e967157", |
| 114 "08323400005a297f16d7e57e7fe1eaac", |
| 115 "95f7bfc262329a5849eda66d8f7c68ce", |
| 116 "815b75c8e0d91cc1ae766dc5d3e445a3", |
| 117 }; |
| 118 TestIntraPred("Intra8", pred_funcs, kVp9IntraPredNames, kNumVp9IntraFuncs, |
| 119 kSignatures, 8, 8 * 8 * kNumVp9IntraFuncs); |
| 120 } |
| 121 |
| 122 void TestIntraPred16(VpxPredFunc const *pred_funcs) { |
| 123 static const int kNumVp9IntraFuncs = 13; |
| 124 static const char *const kSignatures[kNumVp9IntraFuncs] = { |
| 125 "b40dbb555d5d16a043dc361e6694fe53", |
| 126 "fb08118cee3b6405d64c1fd68be878c6", |
| 127 "6c190f341475c837cc38c2e566b64875", |
| 128 "db5c34ccbe2c7f595d9b08b0dc2c698c", |
| 129 "a62cbfd153a1f0b9fed13e62b8408a7a", |
| 130 "143df5b4c89335e281103f610f5052e4", |
| 131 "d87feb124107cdf2cfb147655aa0bb3c", |
| 132 "7841fae7d4d47b519322e6a03eeed9dc", |
| 133 "f6ebed3f71cbcf8d6d0516ce87e11093", |
| 134 "3cc480297dbfeed01a1c2d78dd03d0c5", |
| 135 "b9f69fa6532b372c545397dcb78ef311", |
| 136 "a8fe1c70432f09d0c20c67bdb6432c4d", |
| 137 "b8a41aa968ec108af447af4217cba91b", |
| 138 }; |
| 139 TestIntraPred("Intra16", pred_funcs, kVp9IntraPredNames, kNumVp9IntraFuncs, |
| 140 kSignatures, 16, 16 * 16 * kNumVp9IntraFuncs); |
| 141 } |
| 142 |
| 143 void TestIntraPred32(VpxPredFunc const *pred_funcs) { |
| 144 static const int kNumVp9IntraFuncs = 13; |
| 145 static const char *const kSignatures[kNumVp9IntraFuncs] = { |
| 146 "558541656d84f9ae7896db655826febe", |
| 147 "b3587a1f9a01495fa38c8cd3c8e2a1bf", |
| 148 "4c6501e64f25aacc55a2a16c7e8f0255", |
| 149 "b3b01379ba08916ef6b1b35f7d9ad51c", |
| 150 "0f1eb38b6cbddb3d496199ef9f329071", |
| 151 "911c06efb9ed1c3b4c104b232b55812f", |
| 152 "9225beb0ddfa7a1d24eaa1be430a6654", |
| 153 "0a6d584a44f8db9aa7ade2e2fdb9fc9e", |
| 154 "b01c9076525216925f3456f034fb6eee", |
| 155 "d267e20ad9e5cd2915d1a47254d3d149", |
| 156 "ed012a4a5da71f36c2393023184a0e59", |
| 157 "f162b51ed618d28b936974cff4391da5", |
| 158 "9e1370c6d42e08d357d9612c93a71cfc", |
| 159 }; |
| 160 TestIntraPred("Intra32", pred_funcs, kVp9IntraPredNames, kNumVp9IntraFuncs, |
| 161 kSignatures, 32, 32 * 32 * kNumVp9IntraFuncs); |
| 162 } |
| 163 |
| 164 } // namespace |
| 165 |
| 166 // Defines a test case for |arch| (e.g., C, SSE2, ...) passing the predictors |
| 167 // to |test_func|. The test name is 'arch.test_func', e.g., C.TestIntraPred4. |
| 168 #define INTRA_PRED_TEST(arch, test_func, dc, dc_left, dc_top, dc_128, v, h, \ |
| 169 d45, d135, d117, d153, d207, d63, tm) \ |
| 170 TEST(arch, test_func) { \ |
| 171 static const VpxPredFunc vp9_intra_pred[] = { \ |
| 172 dc, dc_left, dc_top, dc_128, v, h, d45, \ |
| 173 d135, d117, d153, d207, d63, tm}; \ |
| 174 test_func(vp9_intra_pred); \ |
| 175 } |
| 176 |
| 177 // ----------------------------------------------------------------------------- |
| 178 // 4x4 |
| 179 |
| 180 INTRA_PRED_TEST(C, TestIntraPred4, vp9_dc_predictor_4x4_c, |
| 181 vp9_dc_left_predictor_4x4_c, vp9_dc_top_predictor_4x4_c, |
| 182 vp9_dc_128_predictor_4x4_c, vp9_v_predictor_4x4_c, |
| 183 vp9_h_predictor_4x4_c, vp9_d45_predictor_4x4_c, |
| 184 vp9_d135_predictor_4x4_c, vp9_d117_predictor_4x4_c, |
| 185 vp9_d153_predictor_4x4_c, vp9_d207_predictor_4x4_c, |
| 186 vp9_d63_predictor_4x4_c, vp9_tm_predictor_4x4_c) |
| 187 |
| 188 #if HAVE_SSE |
| 189 INTRA_PRED_TEST(SSE, TestIntraPred4, vp9_dc_predictor_4x4_sse, |
| 190 vp9_dc_left_predictor_4x4_sse, vp9_dc_top_predictor_4x4_sse, |
| 191 vp9_dc_128_predictor_4x4_sse, vp9_v_predictor_4x4_sse, NULL, |
| 192 NULL, NULL, NULL, NULL, NULL, NULL, vp9_tm_predictor_4x4_sse) |
| 193 #endif // HAVE_SSE |
| 194 |
| 195 #if HAVE_SSSE3 |
| 196 INTRA_PRED_TEST(SSSE3, TestIntraPred4, NULL, NULL, NULL, NULL, NULL, |
| 197 vp9_h_predictor_4x4_ssse3, vp9_d45_predictor_4x4_ssse3, NULL, |
| 198 NULL, vp9_d153_predictor_4x4_ssse3, |
| 199 vp9_d207_predictor_4x4_ssse3, vp9_d63_predictor_4x4_ssse3, NULL) |
| 200 #endif // HAVE_SSSE3 |
| 201 |
| 202 #if HAVE_DSPR2 |
| 203 INTRA_PRED_TEST(DSPR2, TestIntraPred4, vp9_dc_predictor_4x4_dspr2, NULL, NULL, |
| 204 NULL, NULL, vp9_h_predictor_4x4_dspr2, NULL, NULL, NULL, NULL, |
| 205 NULL, NULL, vp9_tm_predictor_4x4_dspr2) |
| 206 #endif // HAVE_DSPR2 |
| 207 |
| 208 #if HAVE_NEON |
| 209 INTRA_PRED_TEST(NEON, TestIntraPred4, NULL, NULL, NULL, NULL, |
| 210 vp9_v_predictor_4x4_neon, vp9_h_predictor_4x4_neon, NULL, NULL, |
| 211 NULL, NULL, NULL, NULL, vp9_tm_predictor_4x4_neon) |
| 212 #endif // HAVE_NEON |
| 213 |
| 214 // ----------------------------------------------------------------------------- |
| 215 // 8x8 |
| 216 |
| 217 INTRA_PRED_TEST(C, TestIntraPred8, vp9_dc_predictor_8x8_c, |
| 218 vp9_dc_left_predictor_8x8_c, vp9_dc_top_predictor_8x8_c, |
| 219 vp9_dc_128_predictor_8x8_c, vp9_v_predictor_8x8_c, |
| 220 vp9_h_predictor_8x8_c, vp9_d45_predictor_8x8_c, |
| 221 vp9_d135_predictor_8x8_c, vp9_d117_predictor_8x8_c, |
| 222 vp9_d153_predictor_8x8_c, vp9_d207_predictor_8x8_c, |
| 223 vp9_d63_predictor_8x8_c, vp9_tm_predictor_8x8_c) |
| 224 |
| 225 #if HAVE_SSE |
| 226 INTRA_PRED_TEST(SSE, TestIntraPred8, vp9_dc_predictor_8x8_sse, |
| 227 vp9_dc_left_predictor_8x8_sse, vp9_dc_top_predictor_8x8_sse, |
| 228 vp9_dc_128_predictor_8x8_sse, vp9_v_predictor_8x8_sse, NULL, |
| 229 NULL, NULL, NULL, NULL, NULL, NULL, NULL) |
| 230 #endif // HAVE_SSE |
| 231 |
| 232 #if HAVE_SSE2 |
| 233 INTRA_PRED_TEST(SSE2, TestIntraPred8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 234 NULL, NULL, NULL, NULL, NULL, vp9_tm_predictor_8x8_sse2) |
| 235 #endif // HAVE_SSE2 |
| 236 |
| 237 #if HAVE_SSSE3 |
| 238 INTRA_PRED_TEST(SSSE3, TestIntraPred8, NULL, NULL, NULL, NULL, NULL, |
| 239 vp9_h_predictor_8x8_ssse3, vp9_d45_predictor_8x8_ssse3, NULL, |
| 240 NULL, vp9_d153_predictor_8x8_ssse3, |
| 241 vp9_d207_predictor_8x8_ssse3, vp9_d63_predictor_8x8_ssse3, NULL) |
| 242 #endif // HAVE_SSSE3 |
| 243 |
| 244 #if HAVE_DSPR2 |
| 245 INTRA_PRED_TEST(DSPR2, TestIntraPred8, vp9_dc_predictor_8x8_dspr2, NULL, NULL, |
| 246 NULL, NULL, vp9_h_predictor_8x8_dspr2, NULL, NULL, NULL, NULL, |
| 247 NULL, NULL, vp9_tm_predictor_8x8_c) |
| 248 #endif // HAVE_DSPR2 |
| 249 |
| 250 #if HAVE_NEON |
| 251 INTRA_PRED_TEST(NEON, TestIntraPred8, vp9_dc_predictor_8x8_neon, |
| 252 vp9_dc_left_predictor_8x8_neon, vp9_dc_top_predictor_8x8_neon, |
| 253 vp9_dc_128_predictor_8x8_neon, vp9_v_predictor_8x8_neon, |
| 254 vp9_h_predictor_8x8_neon, NULL, NULL, NULL, NULL, NULL, NULL, |
| 255 vp9_tm_predictor_8x8_neon) |
| 256 |
| 257 #endif // HAVE_NEON |
| 258 |
| 259 // ----------------------------------------------------------------------------- |
| 260 // 16x16 |
| 261 |
| 262 INTRA_PRED_TEST(C, TestIntraPred16, vp9_dc_predictor_16x16_c, |
| 263 vp9_dc_left_predictor_16x16_c, vp9_dc_top_predictor_16x16_c, |
| 264 vp9_dc_128_predictor_16x16_c, vp9_v_predictor_16x16_c, |
| 265 vp9_h_predictor_16x16_c, vp9_d45_predictor_16x16_c, |
| 266 vp9_d135_predictor_16x16_c, vp9_d117_predictor_16x16_c, |
| 267 vp9_d153_predictor_16x16_c, vp9_d207_predictor_16x16_c, |
| 268 vp9_d63_predictor_16x16_c, vp9_tm_predictor_16x16_c) |
| 269 |
| 270 #if HAVE_SSE2 |
| 271 INTRA_PRED_TEST(SSE2, TestIntraPred16, vp9_dc_predictor_16x16_sse2, |
| 272 vp9_dc_left_predictor_16x16_sse2, |
| 273 vp9_dc_top_predictor_16x16_sse2, |
| 274 vp9_dc_128_predictor_16x16_sse2, vp9_v_predictor_16x16_sse2, |
| 275 NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 276 vp9_tm_predictor_16x16_sse2) |
| 277 #endif // HAVE_SSE2 |
| 278 |
| 279 #if HAVE_SSSE3 |
| 280 INTRA_PRED_TEST(SSSE3, TestIntraPred16, NULL, NULL, NULL, NULL, NULL, |
| 281 vp9_h_predictor_16x16_ssse3, vp9_d45_predictor_16x16_ssse3, |
| 282 NULL, NULL, vp9_d153_predictor_16x16_ssse3, |
| 283 vp9_d207_predictor_16x16_ssse3, vp9_d63_predictor_16x16_ssse3, |
| 284 NULL) |
| 285 #endif // HAVE_SSSE3 |
| 286 |
| 287 #if HAVE_DSPR2 |
| 288 INTRA_PRED_TEST(DSPR2, TestIntraPred16, vp9_dc_predictor_16x16_dspr2, NULL, |
| 289 NULL, NULL, NULL, vp9_h_predictor_16x16_dspr2, NULL, NULL, NULL, |
| 290 NULL, NULL, NULL, NULL) |
| 291 #endif // HAVE_DSPR2 |
| 292 |
| 293 #if HAVE_NEON |
| 294 INTRA_PRED_TEST(NEON, TestIntraPred16, vp9_dc_predictor_16x16_neon, |
| 295 vp9_dc_left_predictor_16x16_neon, |
| 296 vp9_dc_top_predictor_16x16_neon, |
| 297 vp9_dc_128_predictor_16x16_neon, vp9_v_predictor_16x16_neon, |
| 298 vp9_h_predictor_16x16_neon, NULL, NULL, NULL, NULL, NULL, NULL, |
| 299 vp9_tm_predictor_16x16_neon) |
| 300 #endif // HAVE_NEON |
| 301 |
| 302 // ----------------------------------------------------------------------------- |
| 303 // 32x32 |
| 304 |
| 305 INTRA_PRED_TEST(C, TestIntraPred32, vp9_dc_predictor_32x32_c, |
| 306 vp9_dc_left_predictor_32x32_c, vp9_dc_top_predictor_32x32_c, |
| 307 vp9_dc_128_predictor_32x32_c, vp9_v_predictor_32x32_c, |
| 308 vp9_h_predictor_32x32_c, vp9_d45_predictor_32x32_c, |
| 309 vp9_d135_predictor_32x32_c, vp9_d117_predictor_32x32_c, |
| 310 vp9_d153_predictor_32x32_c, vp9_d207_predictor_32x32_c, |
| 311 vp9_d63_predictor_32x32_c, vp9_tm_predictor_32x32_c) |
| 312 |
| 313 #if HAVE_SSE2 |
| 314 INTRA_PRED_TEST(SSE2, TestIntraPred32, vp9_dc_predictor_32x32_sse2, |
| 315 vp9_dc_left_predictor_32x32_sse2, |
| 316 vp9_dc_top_predictor_32x32_sse2, |
| 317 vp9_dc_128_predictor_32x32_sse2, vp9_v_predictor_32x32_sse2, |
| 318 NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 319 #if ARCH_X86_64 |
| 320 vp9_tm_predictor_32x32_sse2 |
| 321 #else |
| 322 NULL |
| 323 #endif |
| 324 ) |
| 325 #endif // HAVE_SSE2 |
| 326 |
| 327 #if HAVE_SSSE3 |
| 328 INTRA_PRED_TEST(SSSE3, TestIntraPred32, NULL, NULL, NULL, NULL, NULL, |
| 329 vp9_h_predictor_32x32_ssse3, vp9_d45_predictor_32x32_ssse3, |
| 330 NULL, NULL, NULL, vp9_d207_predictor_32x32_ssse3, |
| 331 vp9_d63_predictor_32x32_ssse3, NULL) |
| 332 #endif // HAVE_SSSE3 |
| 333 |
| 334 #if HAVE_NEON |
| 335 INTRA_PRED_TEST(NEON, TestIntraPred32, NULL, NULL, NULL, NULL, |
| 336 vp9_v_predictor_32x32_neon, vp9_h_predictor_32x32_neon, NULL, |
| 337 NULL, NULL, NULL, NULL, NULL, vp9_tm_predictor_32x32_neon) |
| 338 #endif // HAVE_NEON |
| 339 |
| 340 #include "test/test_libvpx.cc" |
OLD | NEW |