David Barker | 5d34e6a | 2017-05-18 15:12:50 +0100 | [diff] [blame] | 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 | #include "test/hiprec_convolve_test_util.h" |
| 13 | |
| 14 | #include "av1/common/restoration.h" |
| 15 | |
| 16 | using std::tr1::tuple; |
| 17 | using std::tr1::make_tuple; |
| 18 | |
| 19 | namespace libaom_test { |
| 20 | |
| 21 | // Generate a random pair of filter kernels, using the ranges |
| 22 | // of possible values from the loop-restoration experiment |
| 23 | static void generate_kernels(ACMRandom *rnd, InterpKernel hkernel, |
| 24 | InterpKernel vkernel) { |
| 25 | hkernel[0] = hkernel[6] = |
| 26 | WIENER_FILT_TAP0_MINV + |
| 27 | rnd->PseudoUniform(WIENER_FILT_TAP0_MAXV + 1 - WIENER_FILT_TAP0_MINV); |
| 28 | hkernel[1] = hkernel[5] = |
| 29 | WIENER_FILT_TAP1_MINV + |
| 30 | rnd->PseudoUniform(WIENER_FILT_TAP1_MAXV + 1 - WIENER_FILT_TAP1_MINV); |
| 31 | hkernel[2] = hkernel[4] = |
| 32 | WIENER_FILT_TAP2_MINV + |
| 33 | rnd->PseudoUniform(WIENER_FILT_TAP2_MAXV + 1 - WIENER_FILT_TAP2_MINV); |
| 34 | hkernel[3] = -(hkernel[0] + hkernel[1] + hkernel[2]); |
| 35 | hkernel[7] = 0; |
| 36 | |
| 37 | vkernel[0] = vkernel[6] = |
| 38 | WIENER_FILT_TAP0_MINV + |
| 39 | rnd->PseudoUniform(WIENER_FILT_TAP0_MAXV + 1 - WIENER_FILT_TAP0_MINV); |
| 40 | vkernel[1] = vkernel[5] = |
| 41 | WIENER_FILT_TAP1_MINV + |
| 42 | rnd->PseudoUniform(WIENER_FILT_TAP1_MAXV + 1 - WIENER_FILT_TAP1_MINV); |
| 43 | vkernel[2] = vkernel[4] = |
| 44 | WIENER_FILT_TAP2_MINV + |
| 45 | rnd->PseudoUniform(WIENER_FILT_TAP2_MAXV + 1 - WIENER_FILT_TAP2_MINV); |
| 46 | vkernel[3] = -(vkernel[0] + vkernel[1] + vkernel[2]); |
| 47 | vkernel[7] = 0; |
| 48 | } |
| 49 | |
| 50 | namespace AV1HiprecConvolve { |
| 51 | |
| 52 | ::testing::internal::ParamGenerator<HiprecConvolveParam> BuildParams( |
| 53 | hiprec_convolve_func filter) { |
| 54 | const HiprecConvolveParam params[] = { |
| 55 | make_tuple(8, 8, 50000, filter), make_tuple(64, 64, 1000, filter), |
| 56 | make_tuple(32, 8, 10000, filter), |
| 57 | }; |
| 58 | return ::testing::ValuesIn(params); |
| 59 | } |
| 60 | |
| 61 | AV1HiprecConvolveTest::~AV1HiprecConvolveTest() {} |
| 62 | void AV1HiprecConvolveTest::SetUp() { |
| 63 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 64 | } |
| 65 | |
| 66 | void AV1HiprecConvolveTest::TearDown() { libaom_test::ClearSystemState(); } |
| 67 | |
| 68 | void AV1HiprecConvolveTest::RunCheckOutput(hiprec_convolve_func test_impl) { |
| 69 | const int w = 128, h = 128; |
| 70 | const int out_w = GET_PARAM(0), out_h = GET_PARAM(1); |
| 71 | const int num_iters = GET_PARAM(2); |
| 72 | int i, j; |
| 73 | |
| 74 | uint8_t *input_ = new uint8_t[h * w]; |
| 75 | uint8_t *input = input_; |
| 76 | |
| 77 | // The convolve functions always write rows with widths that are multiples of |
| 78 | // 8. |
| 79 | // So to avoid a buffer overflow, we may need to pad rows to a multiple of 8. |
| 80 | int output_n = ((out_w + 7) & ~7) * out_h; |
| 81 | uint8_t *output = new uint8_t[output_n]; |
| 82 | uint8_t *output2 = new uint8_t[output_n]; |
| 83 | |
| 84 | // Generate random filter kernels |
| 85 | DECLARE_ALIGNED(16, InterpKernel, hkernel); |
| 86 | DECLARE_ALIGNED(16, InterpKernel, vkernel); |
| 87 | |
| 88 | generate_kernels(&rnd_, hkernel, vkernel); |
| 89 | |
| 90 | for (i = 0; i < h; ++i) |
| 91 | for (j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand8(); |
| 92 | |
| 93 | for (i = 0; i < num_iters; ++i) { |
| 94 | // Choose random locations within the source block |
David Barker | 67e1557 | 2017-06-05 14:53:29 +0100 | [diff] [blame] | 95 | int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 96 | int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
David Barker | 5d34e6a | 2017-05-18 15:12:50 +0100 | [diff] [blame] | 97 | aom_convolve8_add_src_hip_c(input + offset_r * w + offset_c, w, output, |
| 98 | out_w, hkernel, 16, vkernel, 16, out_w, out_h); |
| 99 | test_impl(input + offset_r * w + offset_c, w, output2, out_w, hkernel, 16, |
| 100 | vkernel, 16, out_w, out_h); |
| 101 | |
| 102 | for (j = 0; j < out_w * out_h; ++j) |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 103 | ASSERT_EQ(output[j], output2[j]) |
| 104 | << "Pixel mismatch at index " << j << " = (" << (j % out_w) << ", " |
| 105 | << (j / out_w) << ") on iteration " << i; |
David Barker | 5d34e6a | 2017-05-18 15:12:50 +0100 | [diff] [blame] | 106 | } |
| 107 | delete[] input_; |
| 108 | delete[] output; |
| 109 | delete[] output2; |
| 110 | } |
| 111 | } // namespace AV1HiprecConvolve |
| 112 | |
| 113 | #if CONFIG_HIGHBITDEPTH |
| 114 | namespace AV1HighbdHiprecConvolve { |
| 115 | |
| 116 | ::testing::internal::ParamGenerator<HighbdHiprecConvolveParam> BuildParams( |
| 117 | highbd_hiprec_convolve_func filter) { |
| 118 | const HighbdHiprecConvolveParam params[] = { |
| 119 | make_tuple(8, 8, 50000, 8, filter), make_tuple(64, 64, 1000, 8, filter), |
| 120 | make_tuple(32, 8, 10000, 8, filter), make_tuple(8, 8, 50000, 10, filter), |
| 121 | make_tuple(64, 64, 1000, 10, filter), make_tuple(32, 8, 10000, 10, filter), |
| 122 | make_tuple(8, 8, 50000, 12, filter), make_tuple(64, 64, 1000, 12, filter), |
| 123 | make_tuple(32, 8, 10000, 12, filter), |
| 124 | }; |
| 125 | return ::testing::ValuesIn(params); |
| 126 | } |
| 127 | |
| 128 | AV1HighbdHiprecConvolveTest::~AV1HighbdHiprecConvolveTest() {} |
| 129 | void AV1HighbdHiprecConvolveTest::SetUp() { |
| 130 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 131 | } |
| 132 | |
| 133 | void AV1HighbdHiprecConvolveTest::TearDown() { |
| 134 | libaom_test::ClearSystemState(); |
| 135 | } |
| 136 | |
| 137 | void AV1HighbdHiprecConvolveTest::RunCheckOutput( |
| 138 | highbd_hiprec_convolve_func test_impl) { |
| 139 | const int w = 128, h = 128; |
| 140 | const int out_w = GET_PARAM(0), out_h = GET_PARAM(1); |
| 141 | const int num_iters = GET_PARAM(2); |
| 142 | const int bd = GET_PARAM(3); |
| 143 | int i, j; |
| 144 | |
| 145 | uint16_t *input = new uint16_t[h * w]; |
| 146 | |
| 147 | // The convolve functions always write rows with widths that are multiples of |
| 148 | // 8. |
| 149 | // So to avoid a buffer overflow, we may need to pad rows to a multiple of 8. |
| 150 | int output_n = ((out_w + 7) & ~7) * out_h; |
| 151 | uint16_t *output = new uint16_t[output_n]; |
| 152 | uint16_t *output2 = new uint16_t[output_n]; |
| 153 | |
| 154 | // Generate random filter kernels |
| 155 | DECLARE_ALIGNED(16, InterpKernel, hkernel); |
| 156 | DECLARE_ALIGNED(16, InterpKernel, vkernel); |
| 157 | |
| 158 | generate_kernels(&rnd_, hkernel, vkernel); |
| 159 | |
| 160 | for (i = 0; i < h; ++i) |
| 161 | for (j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand16() & ((1 << bd) - 1); |
| 162 | |
| 163 | uint8_t *input_ptr = CONVERT_TO_BYTEPTR(input); |
| 164 | uint8_t *output_ptr = CONVERT_TO_BYTEPTR(output); |
| 165 | uint8_t *output2_ptr = CONVERT_TO_BYTEPTR(output2); |
| 166 | |
| 167 | for (i = 0; i < num_iters; ++i) { |
| 168 | // Choose random locations within the source block |
David Barker | 67e1557 | 2017-06-05 14:53:29 +0100 | [diff] [blame] | 169 | int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 170 | int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
David Barker | 5d34e6a | 2017-05-18 15:12:50 +0100 | [diff] [blame] | 171 | aom_highbd_convolve8_add_src_hip_c(input_ptr + offset_r * w + offset_c, w, |
| 172 | output_ptr, out_w, hkernel, 16, vkernel, |
| 173 | 16, out_w, out_h, bd); |
| 174 | test_impl(input_ptr + offset_r * w + offset_c, w, output2_ptr, out_w, |
| 175 | hkernel, 16, vkernel, 16, out_w, out_h, bd); |
| 176 | |
| 177 | for (j = 0; j < out_w * out_h; ++j) |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 178 | ASSERT_EQ(output[j], output2[j]) |
| 179 | << "Pixel mismatch at index " << j << " = (" << (j % out_w) << ", " |
| 180 | << (j / out_w) << ") on iteration " << i; |
David Barker | 5d34e6a | 2017-05-18 15:12:50 +0100 | [diff] [blame] | 181 | } |
| 182 | delete[] input; |
| 183 | delete[] output; |
| 184 | delete[] output2; |
| 185 | } |
| 186 | } // namespace AV1HighbdHiprecConvolve |
| 187 | #endif // CONFIG_HIGHBITDEPTH |
| 188 | } // namespace libaom_test |