aboutsummaryrefslogtreecommitdiff
path: root/src/dsp/loop_restoration_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/dsp/loop_restoration_test.cc')
-rw-r--r--src/dsp/loop_restoration_test.cc28
1 files changed, 25 insertions, 3 deletions
diff --git a/src/dsp/loop_restoration_test.cc b/src/dsp/loop_restoration_test.cc
index 97a05d4..4c54bc6 100644
--- a/src/dsp/loop_restoration_test.cc
+++ b/src/dsp/loop_restoration_test.cc
@@ -83,6 +83,9 @@ class SelfGuidedFilterTest : public testing::TestWithParam<int>,
}
} else if (absl::StartsWith(test_case, "NEON/")) {
LoopRestorationInit_NEON();
+#if LIBGAV1_MAX_BITDEPTH >= 10
+ LoopRestorationInit10bpp_NEON();
+#endif
} else {
FAIL() << "Unrecognized architecture prefix in test case name: "
<< test_case;
@@ -228,7 +231,11 @@ void SelfGuidedFilterTest<bitdepth, Pixel>::TestRandomValues(bool speed) {
if (target_self_guided_filter_func_ == nullptr) return;
constexpr int bd_index = (bitdepth == 8) ? 0 : 1;
const int num_inputs = speed ? 1 : 5;
- const int num_tests = speed ? 20000 : 1;
+#if LIBGAV1_ENABLE_NEON
+ const int num_tests = speed ? 4000 : 1;
+#else
+ const int num_tests = speed ? 10000 : 1;
+#endif
libvpx_test::ACMRandom rnd(libvpx_test::ACMRandom::DeterministicSeed());
const Pixel* const src = src_ + kOffset;
Pixel* const dst = dst_ + kOffset;
@@ -310,6 +317,10 @@ INSTANTIATE_TEST_SUITE_P(AVX2, SelfGuidedFilterTest10bpp,
INSTANTIATE_TEST_SUITE_P(SSE41, SelfGuidedFilterTest10bpp,
testing::ValuesIn(kUnitWidths));
#endif
+#if LIBGAV1_ENABLE_NEON
+INSTANTIATE_TEST_SUITE_P(NEON, SelfGuidedFilterTest10bpp,
+ testing::ValuesIn(kUnitWidths));
+#endif
#endif // LIBGAV1_MAX_BITDEPTH >= 10
@@ -348,6 +359,9 @@ class WienerFilterTest : public testing::TestWithParam<int>,
}
} else if (absl::StartsWith(test_case, "NEON/")) {
LoopRestorationInit_NEON();
+#if LIBGAV1_MAX_BITDEPTH >= 10
+ LoopRestorationInit10bpp_NEON();
+#endif
} else {
FAIL() << "Unrecognized architecture prefix in test case name: "
<< test_case;
@@ -477,7 +491,11 @@ void WienerFilterTest<bitdepth, Pixel>::TestRandomValues(bool speed) {
"3c91bf1a34672cd40bf261c5820d3ec3"}}};
if (target_wiener_filter_func_ == nullptr) return;
constexpr int bd_index = (bitdepth == 8) ? 0 : 1;
- const int num_tests = speed ? 100000 : 1;
+#if LIBGAV1_ENABLE_NEON
+ const int num_tests = speed ? 5000 : 1;
+#else
+ const int num_tests = speed ? 10000 : 1;
+#endif
const Pixel* const src = src_ + kOffset;
Pixel* const dst = dst_ + kOffset;
for (const auto vertical_order : kWienerOrders) {
@@ -545,7 +563,7 @@ void WienerFilterTest<bitdepth, Pixel>::TestCompare2C() {
kStride, unit_width_, unit_height_,
&restoration_buffer_, tmp);
if (!test_utils::CompareBlocks(dst, tmp, unit_width_, unit_height_,
- kStride, kStride, false, false)) {
+ kStride, kStride, false, true)) {
ADD_FAILURE() << "Mismatch -- wiener taps min/max";
}
}
@@ -608,6 +626,10 @@ INSTANTIATE_TEST_SUITE_P(AVX2, WienerFilterTest10bpp,
INSTANTIATE_TEST_SUITE_P(SSE41, WienerFilterTest10bpp,
testing::ValuesIn(kUnitWidths));
#endif
+#if LIBGAV1_ENABLE_NEON
+INSTANTIATE_TEST_SUITE_P(NEON, WienerFilterTest10bpp,
+ testing::ValuesIn(kUnitWidths));
+#endif
#endif // LIBGAV1_MAX_BITDEPTH >= 10