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
|
/*
* Copyright (c) 2018, Alliance for Open Media. All rights reserved.
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#include <cstdlib>
#include <new>
#include <tuple>
#include "config/aom_config.h"
#include "config/aom_dsp_rtcd.h"
#include "aom/aom_codec.h"
#include "aom/aom_integer.h"
#include "aom_dsp/variance.h"
#include "aom_mem/aom_mem.h"
#include "aom_ports/aom_timer.h"
#include "aom_ports/mem.h"
#include "av1/common/reconinter.h"
#include "av1/encoder/reconinter_enc.h"
#include "gtest/gtest.h"
#include "test/acm_random.h"
#include "test/register_state_check.h"
#include "test/util.h"
namespace {
typedef void (*comp_mask_pred_func)(uint8_t *comp_pred, const uint8_t *pred,
int width, int height, const uint8_t *ref,
int ref_stride, const uint8_t *mask,
int mask_stride, int invert_mask);
typedef void (*comp_avg_pred_func)(uint8_t *comp_pred, const uint8_t *pred,
int width, int height, const uint8_t *ref,
int ref_stride);
#if HAVE_SSSE3 || HAVE_SSE2 || HAVE_AVX2 || HAVE_NEON
const BLOCK_SIZE kCompMaskPredParams[] = {
BLOCK_8X8, BLOCK_8X16, BLOCK_8X32, BLOCK_16X8, BLOCK_16X16,
BLOCK_16X32, BLOCK_32X8, BLOCK_32X16, BLOCK_32X32
};
#endif
class AV1CompMaskPredBase : public ::testing::Test {
public:
~AV1CompMaskPredBase() override;
void SetUp() override;
void TearDown() override;
protected:
bool CheckResult(int width, int height) {
for (int y = 0; y < height; ++y) {
for (int x = 0; x < width; ++x) {
const int idx = y * width + x;
if (comp_pred1_[idx] != comp_pred2_[idx]) {
printf("%dx%d mismatch @%d(%d,%d) ", width, height, idx, y, x);
printf("%d != %d ", comp_pred1_[idx], comp_pred2_[idx]);
return false;
}
}
}
return true;
}
libaom_test::ACMRandom rnd_;
uint8_t *comp_pred1_;
uint8_t *comp_pred2_;
uint8_t *pred_;
uint8_t *ref_buffer_;
uint8_t *ref_;
};
AV1CompMaskPredBase::~AV1CompMaskPredBase() = default;
void AV1CompMaskPredBase::SetUp() {
rnd_.Reset(libaom_test::ACMRandom::DeterministicSeed());
av1_init_wedge_masks();
comp_pred1_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(comp_pred1_, nullptr);
comp_pred2_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(comp_pred2_, nullptr);
pred_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(pred_, nullptr);
// The biggest block size is MAX_SB_SQUARE(128*128), however for the
// convolution we need to access 3 bytes before and 4 bytes after (for an
// 8-tap filter), in both directions, so we need to allocate
// (128 + 7) * (128 + 7) = MAX_SB_SQUARE + (14 * MAX_SB_SIZE) + 49
ref_buffer_ =
(uint8_t *)aom_memalign(16, MAX_SB_SQUARE + (14 * MAX_SB_SIZE) + 49);
ASSERT_NE(ref_buffer_, nullptr);
// Start of the actual block where the convolution will be computed
ref_ = ref_buffer_ + (3 * MAX_SB_SIZE + 3);
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand8();
}
for (int i = 0; i < MAX_SB_SQUARE + (14 * MAX_SB_SIZE) + 49; ++i) {
ref_buffer_[i] = rnd_.Rand8();
}
}
void AV1CompMaskPredBase::TearDown() {
aom_free(comp_pred1_);
aom_free(comp_pred2_);
aom_free(pred_);
aom_free(ref_buffer_);
}
typedef std::tuple<comp_mask_pred_func, BLOCK_SIZE> CompMaskPredParam;
class AV1CompMaskPredTest
: public AV1CompMaskPredBase,
public ::testing::WithParamInterface<CompMaskPredParam> {
protected:
void RunCheckOutput(comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv);
void RunSpeedTest(comp_mask_pred_func test_impl, BLOCK_SIZE bsize);
};
void AV1CompMaskPredTest::RunCheckOutput(comp_mask_pred_func test_impl,
BLOCK_SIZE bsize, int inv) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int wedge_types = get_wedge_types_lookup(bsize);
for (int wedge_index = 0; wedge_index < wedge_types; ++wedge_index) {
const uint8_t *mask = av1_get_contiguous_soft_mask(wedge_index, 1, bsize);
aom_comp_mask_pred_c(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w,
inv);
test_impl(comp_pred2_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, inv);
ASSERT_EQ(CheckResult(w, h), true)
<< " wedge " << wedge_index << " inv " << inv;
}
}
void AV1CompMaskPredTest::RunSpeedTest(comp_mask_pred_func test_impl,
BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int wedge_types = get_wedge_types_lookup(bsize);
int wedge_index = wedge_types / 2;
const uint8_t *mask = av1_get_contiguous_soft_mask(wedge_index, 1, bsize);
const int num_loops = 1000000000 / (w + h);
comp_mask_pred_func funcs[2] = { aom_comp_mask_pred_c, test_impl };
double elapsed_time[2] = { 0 };
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
comp_mask_pred_func func = funcs[i];
for (int j = 0; j < num_loops; ++j) {
func(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, 0);
}
aom_usec_timer_mark(&timer);
double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time / num_loops;
}
printf("compMask %3dx%-3d: %7.2f/%7.2fns", w, h, elapsed_time[0],
elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1CompMaskPredTest);
TEST_P(AV1CompMaskPredTest, CheckOutput) {
// inv = 0, 1
RunCheckOutput(GET_PARAM(0), GET_PARAM(1), 0);
RunCheckOutput(GET_PARAM(0), GET_PARAM(1), 1);
}
TEST_P(AV1CompMaskPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1));
}
#if HAVE_SSSE3
INSTANTIATE_TEST_SUITE_P(
SSSE3, AV1CompMaskPredTest,
::testing::Combine(::testing::Values(&aom_comp_mask_pred_ssse3),
::testing::ValuesIn(kCompMaskPredParams)));
#endif
#if HAVE_AVX2
INSTANTIATE_TEST_SUITE_P(
AVX2, AV1CompMaskPredTest,
::testing::Combine(::testing::Values(&aom_comp_mask_pred_avx2),
::testing::ValuesIn(kCompMaskPredParams)));
#endif
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1CompMaskPredTest,
::testing::Combine(::testing::Values(&aom_comp_mask_pred_neon),
::testing::ValuesIn(kCompMaskPredParams)));
#endif
#if HAVE_SSSE3 || HAVE_SSE2 || HAVE_AVX2 || HAVE_NEON
const BLOCK_SIZE kValidBlockSize[] = {
BLOCK_4X4, BLOCK_8X8, BLOCK_8X16, BLOCK_8X32, BLOCK_16X8,
BLOCK_16X16, BLOCK_16X32, BLOCK_32X8, BLOCK_32X16, BLOCK_32X32,
BLOCK_32X64, BLOCK_64X32, BLOCK_64X64, BLOCK_64X128, BLOCK_128X64,
BLOCK_128X128, BLOCK_16X64, BLOCK_64X16
};
#endif
typedef void (*upsampled_pred_func)(MACROBLOCKD *xd, const AV1_COMMON *const cm,
int mi_row, int mi_col, const MV *const mv,
uint8_t *comp_pred, int width, int height,
int subpel_x_q3, int subpel_y_q3,
const uint8_t *ref, int ref_stride,
int subpel_search);
typedef std::tuple<upsampled_pred_func, BLOCK_SIZE> UpsampledPredParam;
class AV1UpsampledPredTest
: public AV1CompMaskPredBase,
public ::testing::WithParamInterface<UpsampledPredParam> {
protected:
void RunCheckOutput(upsampled_pred_func test_impl, BLOCK_SIZE bsize);
void RunSpeedTest(upsampled_pred_func test_impl, BLOCK_SIZE bsize,
int havSub);
};
void AV1UpsampledPredTest::RunCheckOutput(upsampled_pred_func test_impl,
BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
for (int subpel_search = USE_4_TAPS; subpel_search <= USE_8_TAPS;
++subpel_search) {
// loop through subx and suby
for (int sub = 0; sub < 8 * 8; ++sub) {
int subx = sub & 0x7;
int suby = (sub >> 3);
aom_upsampled_pred_c(nullptr, nullptr, 0, 0, nullptr, comp_pred1_, w, h,
subx, suby, ref_, MAX_SB_SIZE, subpel_search);
test_impl(nullptr, nullptr, 0, 0, nullptr, comp_pred2_, w, h, subx, suby,
ref_, MAX_SB_SIZE, subpel_search);
ASSERT_EQ(CheckResult(w, h), true)
<< "sub (" << subx << "," << suby << ")";
}
}
}
void AV1UpsampledPredTest::RunSpeedTest(upsampled_pred_func test_impl,
BLOCK_SIZE bsize, int havSub) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int subx = havSub ? 3 : 0;
const int suby = havSub ? 4 : 0;
const int num_loops = 1000000000 / (w + h);
upsampled_pred_func funcs[2] = { aom_upsampled_pred_c, test_impl };
double elapsed_time[2] = { 0 };
int subpel_search = USE_8_TAPS; // set to USE_4_TAPS to test 4-tap filter.
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
upsampled_pred_func func = funcs[i];
for (int j = 0; j < num_loops; ++j) {
func(nullptr, nullptr, 0, 0, nullptr, comp_pred1_, w, h, subx, suby, ref_,
MAX_SB_SIZE, subpel_search);
}
aom_usec_timer_mark(&timer);
double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time / num_loops;
}
printf("UpsampledPred[%d] %3dx%-3d:%7.2f/%7.2fns", havSub, w, h,
elapsed_time[0], elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1UpsampledPredTest);
TEST_P(AV1UpsampledPredTest, CheckOutput) {
RunCheckOutput(GET_PARAM(0), GET_PARAM(1));
}
TEST_P(AV1UpsampledPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1), 1);
}
#if HAVE_SSE2
INSTANTIATE_TEST_SUITE_P(
SSE2, AV1UpsampledPredTest,
::testing::Combine(::testing::Values(&aom_upsampled_pred_sse2),
::testing::ValuesIn(kValidBlockSize)));
#endif
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1UpsampledPredTest,
::testing::Combine(::testing::Values(&aom_upsampled_pred_neon),
::testing::ValuesIn(kValidBlockSize)));
#endif
typedef std::tuple<comp_avg_pred_func, BLOCK_SIZE> CompAvgPredParam;
class AV1CompAvgPredTest : public ::testing::TestWithParam<CompAvgPredParam> {
public:
~AV1CompAvgPredTest() override;
void SetUp() override;
void TearDown() override;
protected:
void RunCheckOutput(comp_avg_pred_func test_impl, BLOCK_SIZE bsize);
void RunSpeedTest(comp_avg_pred_func test_impl, BLOCK_SIZE bsize);
bool CheckResult(int width, int height) {
for (int y = 0; y < height; ++y) {
for (int x = 0; x < width; ++x) {
const int idx = y * width + x;
if (comp_pred1_[idx] != comp_pred2_[idx]) {
printf("%dx%d mismatch @%d(%d,%d) ", width, height, idx, x, y);
printf("%d != %d ", comp_pred1_[idx], comp_pred2_[idx]);
return false;
}
}
}
return true;
}
libaom_test::ACMRandom rnd_;
uint8_t *comp_pred1_;
uint8_t *comp_pred2_;
uint8_t *pred_;
uint8_t *ref_;
};
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1CompAvgPredTest);
AV1CompAvgPredTest::~AV1CompAvgPredTest() = default;
void AV1CompAvgPredTest::SetUp() {
rnd_.Reset(libaom_test::ACMRandom::DeterministicSeed());
comp_pred1_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(comp_pred1_, nullptr);
comp_pred2_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(comp_pred2_, nullptr);
pred_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(pred_, nullptr);
ref_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE);
ASSERT_NE(ref_, nullptr);
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand8();
}
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
ref_[i] = rnd_.Rand8();
}
}
void AV1CompAvgPredTest::TearDown() {
aom_free(comp_pred1_);
aom_free(comp_pred2_);
aom_free(pred_);
aom_free(ref_);
}
void AV1CompAvgPredTest::RunCheckOutput(comp_avg_pred_func test_impl,
BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
aom_comp_avg_pred_c(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE);
test_impl(comp_pred2_, pred_, w, h, ref_, MAX_SB_SIZE);
ASSERT_EQ(CheckResult(w, h), true);
}
void AV1CompAvgPredTest::RunSpeedTest(comp_avg_pred_func test_impl,
BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int num_loops = 1000000000 / (w + h);
comp_avg_pred_func functions[2] = { aom_comp_avg_pred_c, test_impl };
double elapsed_time[2] = { 0.0 };
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
comp_avg_pred_func func = functions[i];
for (int j = 0; j < num_loops; ++j) {
func(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE);
}
aom_usec_timer_mark(&timer);
const double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time;
}
printf("CompAvgPred %3dx%-3d: %7.2f/%7.2fns", w, h, elapsed_time[0],
elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
TEST_P(AV1CompAvgPredTest, CheckOutput) {
RunCheckOutput(GET_PARAM(0), GET_PARAM(1));
}
TEST_P(AV1CompAvgPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1));
}
#if HAVE_AVX2
INSTANTIATE_TEST_SUITE_P(
AVX2, AV1CompAvgPredTest,
::testing::Combine(::testing::Values(&aom_comp_avg_pred_avx2),
::testing::ValuesIn(kValidBlockSize)));
#endif
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1CompAvgPredTest,
::testing::Combine(::testing::Values(&aom_comp_avg_pred_neon),
::testing::ValuesIn(kValidBlockSize)));
#endif
#if CONFIG_AV1_HIGHBITDEPTH
class AV1HighbdCompMaskPredTestBase : public ::testing::Test {
public:
~AV1HighbdCompMaskPredTestBase() override;
void SetUp() override;
void TearDown() override;
protected:
bool CheckResult(int width, int height) {
for (int y = 0; y < height; ++y) {
for (int x = 0; x < width; ++x) {
const int idx = y * width + x;
if (comp_pred1_[idx] != comp_pred2_[idx]) {
printf("%dx%d mismatch @%d(%d,%d) ", width, height, idx, y, x);
printf("%d != %d ", comp_pred1_[idx], comp_pred2_[idx]);
return false;
}
}
}
return true;
}
libaom_test::ACMRandom rnd_;
uint16_t *comp_pred1_;
uint16_t *comp_pred2_;
uint16_t *pred_;
uint16_t *ref_buffer_;
uint16_t *ref_;
};
AV1HighbdCompMaskPredTestBase::~AV1HighbdCompMaskPredTestBase() = default;
void AV1HighbdCompMaskPredTestBase::SetUp() {
rnd_.Reset(libaom_test::ACMRandom::DeterministicSeed());
av1_init_wedge_masks();
comp_pred1_ =
(uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*comp_pred1_));
ASSERT_NE(comp_pred1_, nullptr);
comp_pred2_ =
(uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*comp_pred2_));
ASSERT_NE(comp_pred2_, nullptr);
pred_ = (uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*pred_));
ASSERT_NE(pred_, nullptr);
// The biggest block size is MAX_SB_SQUARE(128*128), however for the
// convolution we need to access 3 elements before and 4 elements after (for
// an 8-tap filter), in both directions, so we need to allocate (128 + 7) *
// (128 + 7) = (MAX_SB_SQUARE + (14 * MAX_SB_SIZE) + 49) *
// sizeof(*ref_buffer_)
ref_buffer_ = (uint16_t *)aom_memalign(
16, (MAX_SB_SQUARE + (14 * MAX_SB_SIZE) + 49) * sizeof(*ref_buffer_));
ASSERT_NE(ref_buffer_, nullptr);
// Start of the actual block where the convolution will be computed
ref_ = ref_buffer_ + (3 * MAX_SB_SIZE + 3);
}
void AV1HighbdCompMaskPredTestBase::TearDown() {
aom_free(comp_pred1_);
aom_free(comp_pred2_);
aom_free(pred_);
aom_free(ref_buffer_);
}
typedef void (*highbd_comp_mask_pred_func)(uint8_t *comp_pred8,
const uint8_t *pred8, int width,
int height, const uint8_t *ref8,
int ref_stride, const uint8_t *mask,
int mask_stride, int invert_mask);
typedef std::tuple<highbd_comp_mask_pred_func, BLOCK_SIZE, int>
HighbdCompMaskPredParam;
class AV1HighbdCompMaskPredTest
: public AV1HighbdCompMaskPredTestBase,
public ::testing::WithParamInterface<HighbdCompMaskPredParam> {
public:
~AV1HighbdCompMaskPredTest() override;
protected:
void RunCheckOutput(comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv);
void RunSpeedTest(comp_mask_pred_func test_impl, BLOCK_SIZE bsize);
};
AV1HighbdCompMaskPredTest::~AV1HighbdCompMaskPredTest() = default;
void AV1HighbdCompMaskPredTest::RunCheckOutput(
highbd_comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv) {
int bd_ = GET_PARAM(2);
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int wedge_types = get_wedge_types_lookup(bsize);
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int i = 0; i < MAX_SB_SQUARE + (8 * MAX_SB_SIZE); ++i) {
ref_buffer_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int wedge_index = 0; wedge_index < wedge_types; ++wedge_index) {
const uint8_t *mask = av1_get_contiguous_soft_mask(wedge_index, 1, bsize);
aom_highbd_comp_mask_pred_c(
CONVERT_TO_BYTEPTR(comp_pred1_), CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE, mask, w, inv);
test_impl(CONVERT_TO_BYTEPTR(comp_pred2_), CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE, mask, w, inv);
ASSERT_EQ(CheckResult(w, h), true)
<< " wedge " << wedge_index << " inv " << inv;
}
}
void AV1HighbdCompMaskPredTest::RunSpeedTest(
highbd_comp_mask_pred_func test_impl, BLOCK_SIZE bsize) {
int bd_ = GET_PARAM(2);
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int wedge_types = get_wedge_types_lookup(bsize);
int wedge_index = wedge_types / 2;
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int i = 0; i < MAX_SB_SQUARE + (8 * MAX_SB_SIZE); ++i) {
ref_buffer_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
const uint8_t *mask = av1_get_contiguous_soft_mask(wedge_index, 1, bsize);
const int num_loops = 1000000000 / (w + h);
highbd_comp_mask_pred_func funcs[2] = { aom_highbd_comp_mask_pred_c,
test_impl };
double elapsed_time[2] = { 0 };
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
highbd_comp_mask_pred_func func = funcs[i];
for (int j = 0; j < num_loops; ++j) {
func(CONVERT_TO_BYTEPTR(comp_pred1_), CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE, mask, w, 0);
}
aom_usec_timer_mark(&timer);
double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time / num_loops;
}
printf("compMask %3dx%-3d: %7.2f/%7.2fns", w, h, elapsed_time[0],
elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1HighbdCompMaskPredTest);
TEST_P(AV1HighbdCompMaskPredTest, CheckOutput) {
// inv = 0, 1
RunCheckOutput(GET_PARAM(0), GET_PARAM(1), 0);
RunCheckOutput(GET_PARAM(0), GET_PARAM(1), 1);
}
TEST_P(AV1HighbdCompMaskPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1));
}
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1HighbdCompMaskPredTest,
::testing::Combine(::testing::Values(&aom_highbd_comp_mask_pred_neon),
::testing::ValuesIn(kCompMaskPredParams),
::testing::Range(8, 13, 2)));
#endif
#if HAVE_AVX2
INSTANTIATE_TEST_SUITE_P(
AVX2, AV1HighbdCompMaskPredTest,
::testing::Combine(::testing::Values(&aom_highbd_comp_mask_pred_avx2),
::testing::ValuesIn(kCompMaskPredParams),
::testing::Range(8, 13, 2)));
#endif
#if HAVE_SSE2
INSTANTIATE_TEST_SUITE_P(
SSE2, AV1HighbdCompMaskPredTest,
::testing::Combine(::testing::Values(&aom_highbd_comp_mask_pred_sse2),
::testing::ValuesIn(kCompMaskPredParams),
::testing::Range(8, 13, 2)));
#endif
typedef void (*highbd_upsampled_pred_func)(
MACROBLOCKD *xd, const struct AV1Common *const cm, int mi_row, int mi_col,
const MV *const mv, uint8_t *comp_pred8, int width, int height,
int subpel_x_q3, int subpel_y_q3, const uint8_t *ref8, int ref_stride,
int bd, int subpel_search);
typedef std::tuple<highbd_upsampled_pred_func, BLOCK_SIZE, int>
HighbdUpsampledPredParam;
class AV1HighbdUpsampledPredTest
: public AV1HighbdCompMaskPredTestBase,
public ::testing::WithParamInterface<HighbdUpsampledPredParam> {
public:
~AV1HighbdUpsampledPredTest() override;
protected:
void RunCheckOutput(highbd_upsampled_pred_func test_impl, BLOCK_SIZE bsize);
void RunSpeedTest(highbd_upsampled_pred_func test_impl, BLOCK_SIZE bsize,
int havSub);
};
AV1HighbdUpsampledPredTest::~AV1HighbdUpsampledPredTest() = default;
void AV1HighbdUpsampledPredTest::RunCheckOutput(
highbd_upsampled_pred_func test_impl, BLOCK_SIZE bsize) {
int bd_ = GET_PARAM(2);
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int i = 0; i < MAX_SB_SQUARE + (8 * MAX_SB_SIZE); ++i) {
ref_buffer_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int subpel_search = 1; subpel_search <= 2; ++subpel_search) {
// loop through subx and suby
for (int sub = 0; sub < 8 * 8; ++sub) {
int subx = sub & 0x7;
int suby = (sub >> 3);
aom_highbd_upsampled_pred_c(nullptr, nullptr, 0, 0, nullptr,
CONVERT_TO_BYTEPTR(comp_pred1_), w, h, subx,
suby, CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE,
bd_, subpel_search);
test_impl(nullptr, nullptr, 0, 0, nullptr,
CONVERT_TO_BYTEPTR(comp_pred2_), w, h, subx, suby,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE, bd_, subpel_search);
ASSERT_EQ(CheckResult(w, h), true)
<< "sub (" << subx << "," << suby << ")";
}
}
}
void AV1HighbdUpsampledPredTest::RunSpeedTest(
highbd_upsampled_pred_func test_impl, BLOCK_SIZE bsize, int havSub) {
int bd_ = GET_PARAM(2);
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int subx = havSub ? 3 : 0;
const int suby = havSub ? 4 : 0;
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int i = 0; i < MAX_SB_SQUARE + (8 * MAX_SB_SIZE); ++i) {
ref_buffer_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
const int num_loops = 1000000000 / (w + h);
highbd_upsampled_pred_func funcs[2] = { &aom_highbd_upsampled_pred_c,
test_impl };
double elapsed_time[2] = { 0 };
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
highbd_upsampled_pred_func func = funcs[i];
int subpel_search = 2; // set to 1 to test 4-tap filter.
for (int j = 0; j < num_loops; ++j) {
func(nullptr, nullptr, 0, 0, nullptr, CONVERT_TO_BYTEPTR(comp_pred1_), w,
h, subx, suby, CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE, bd_,
subpel_search);
}
aom_usec_timer_mark(&timer);
double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time / num_loops;
}
printf("CompMaskUp[%d] %3dx%-3d:%7.2f/%7.2fns", havSub, w, h, elapsed_time[0],
elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1HighbdUpsampledPredTest);
TEST_P(AV1HighbdUpsampledPredTest, CheckOutput) {
RunCheckOutput(GET_PARAM(0), GET_PARAM(1));
}
TEST_P(AV1HighbdUpsampledPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1), 1);
}
#if HAVE_SSE2
INSTANTIATE_TEST_SUITE_P(
SSE2, AV1HighbdUpsampledPredTest,
::testing::Combine(::testing::Values(&aom_highbd_upsampled_pred_sse2),
::testing::ValuesIn(kValidBlockSize),
::testing::Range(8, 13, 2)));
#endif
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1HighbdUpsampledPredTest,
::testing::Combine(::testing::Values(&aom_highbd_upsampled_pred_neon),
::testing::ValuesIn(kValidBlockSize),
::testing::Range(8, 13, 2)));
#endif
typedef void (*highbd_comp_avg_pred_func)(uint8_t *comp_pred,
const uint8_t *pred, int width,
int height, const uint8_t *ref,
int ref_stride);
typedef std::tuple<highbd_comp_avg_pred_func, BLOCK_SIZE, int>
HighbdCompAvgPredParam;
class AV1HighbdCompAvgPredTest
: public ::testing::TestWithParam<HighbdCompAvgPredParam> {
public:
~AV1HighbdCompAvgPredTest() override;
void SetUp() override;
protected:
void RunCheckOutput(highbd_comp_avg_pred_func test_impl, BLOCK_SIZE bsize);
void RunSpeedTest(highbd_comp_avg_pred_func test_impl, BLOCK_SIZE bsize);
bool CheckResult(int width, int height) const {
for (int y = 0; y < height; ++y) {
for (int x = 0; x < width; ++x) {
const int idx = y * width + x;
if (comp_pred1_[idx] != comp_pred2_[idx]) {
printf("%dx%d mismatch @%d(%d,%d) ", width, height, idx, x, y);
printf("%d != %d ", comp_pred1_[idx], comp_pred2_[idx]);
return false;
}
}
}
return true;
}
libaom_test::ACMRandom rnd_;
uint16_t *comp_pred1_;
uint16_t *comp_pred2_;
uint16_t *pred_;
uint16_t *ref_;
};
AV1HighbdCompAvgPredTest::~AV1HighbdCompAvgPredTest() {
aom_free(comp_pred1_);
aom_free(comp_pred2_);
aom_free(pred_);
aom_free(ref_);
}
void AV1HighbdCompAvgPredTest::SetUp() {
int bd_ = GET_PARAM(2);
rnd_.Reset(libaom_test::ACMRandom::DeterministicSeed());
comp_pred1_ =
(uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*comp_pred1_));
ASSERT_NE(comp_pred1_, nullptr);
comp_pred2_ =
(uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*comp_pred2_));
ASSERT_NE(comp_pred2_, nullptr);
pred_ = (uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*pred_));
ASSERT_NE(pred_, nullptr);
ref_ = (uint16_t *)aom_memalign(16, MAX_SB_SQUARE * sizeof(*ref_));
ASSERT_NE(ref_, nullptr);
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
pred_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
for (int i = 0; i < MAX_SB_SQUARE; ++i) {
ref_[i] = rnd_.Rand16() & ((1 << bd_) - 1);
}
}
void AV1HighbdCompAvgPredTest::RunCheckOutput(
highbd_comp_avg_pred_func test_impl, BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
aom_highbd_comp_avg_pred_c(CONVERT_TO_BYTEPTR(comp_pred1_),
CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE);
test_impl(CONVERT_TO_BYTEPTR(comp_pred2_), CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE);
ASSERT_EQ(CheckResult(w, h), true);
}
void AV1HighbdCompAvgPredTest::RunSpeedTest(highbd_comp_avg_pred_func test_impl,
BLOCK_SIZE bsize) {
const int w = block_size_wide[bsize];
const int h = block_size_high[bsize];
const int num_loops = 1000000000 / (w + h);
highbd_comp_avg_pred_func functions[2] = { aom_highbd_comp_avg_pred_c,
test_impl };
double elapsed_time[2] = { 0.0 };
for (int i = 0; i < 2; ++i) {
aom_usec_timer timer;
aom_usec_timer_start(&timer);
highbd_comp_avg_pred_func func = functions[i];
for (int j = 0; j < num_loops; ++j) {
func(CONVERT_TO_BYTEPTR(comp_pred1_), CONVERT_TO_BYTEPTR(pred_), w, h,
CONVERT_TO_BYTEPTR(ref_), MAX_SB_SIZE);
}
aom_usec_timer_mark(&timer);
const double time = static_cast<double>(aom_usec_timer_elapsed(&timer));
elapsed_time[i] = 1000.0 * time;
}
printf("HighbdCompAvg %3dx%-3d: %7.2f/%7.2fns", w, h, elapsed_time[0],
elapsed_time[1]);
printf("(%3.2f)\n", elapsed_time[0] / elapsed_time[1]);
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AV1HighbdCompAvgPredTest);
TEST_P(AV1HighbdCompAvgPredTest, CheckOutput) {
RunCheckOutput(GET_PARAM(0), GET_PARAM(1));
}
TEST_P(AV1HighbdCompAvgPredTest, DISABLED_Speed) {
RunSpeedTest(GET_PARAM(0), GET_PARAM(1));
}
#if HAVE_NEON
INSTANTIATE_TEST_SUITE_P(
NEON, AV1HighbdCompAvgPredTest,
::testing::Combine(::testing::Values(&aom_highbd_comp_avg_pred_neon),
::testing::ValuesIn(kValidBlockSize),
::testing::Range(8, 13, 2)));
#endif
#endif // CONFIG_AV1_HIGHBITDEPTH
} // namespace
|