David Barker | 8295c7c | 2017-06-02 15:21:43 +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/av1_convolve_2d_test_util.h" |
| 13 | |
Scott LaVarnway | 8b90918 | 2017-12-28 11:39:41 -0800 | [diff] [blame] | 14 | #include "aom_ports/aom_timer.h" |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 15 | #include "av1/common/common_data.h" |
Scott LaVarnway | 8b90918 | 2017-12-28 11:39:41 -0800 | [diff] [blame] | 16 | #include "av1/common/convolve.h" |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 17 | |
James Zern | 9561280 | 2018-03-30 11:37:54 -0700 | [diff] [blame] | 18 | using ::testing::make_tuple; |
| 19 | using ::testing::tuple; |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 20 | |
| 21 | namespace libaom_test { |
| 22 | |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 23 | const int kMaxSize = 128 + 32; // padding |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 24 | namespace AV1Convolve2D { |
| 25 | |
| 26 | ::testing::internal::ParamGenerator<Convolve2DParam> BuildParams( |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 27 | convolve_2d_func filter, int has_subx, int has_suby) { |
| 28 | return ::testing::Combine(::testing::Values(filter), |
| 29 | ::testing::Values(has_subx), |
| 30 | ::testing::Values(has_suby), |
| 31 | ::testing::Range(BLOCK_4X4, BLOCK_SIZES_ALL)); |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 32 | } |
| 33 | |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 34 | AV1Convolve2DSrTest::~AV1Convolve2DSrTest() {} |
| 35 | void AV1Convolve2DSrTest::SetUp() { |
| 36 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 37 | } |
| 38 | |
| 39 | void AV1Convolve2DSrTest::TearDown() { libaom_test::ClearSystemState(); } |
| 40 | |
| 41 | void AV1Convolve2DSrTest::RunCheckOutput(convolve_2d_func test_impl) { |
| 42 | const int w = kMaxSize, h = kMaxSize; |
| 43 | const int has_subx = GET_PARAM(1); |
| 44 | const int has_suby = GET_PARAM(2); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 45 | const int block_idx = GET_PARAM(3); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 46 | int hfilter, vfilter, subx, suby; |
| 47 | uint8_t input[kMaxSize * kMaxSize]; |
| 48 | DECLARE_ALIGNED(32, uint8_t, output[MAX_SB_SQUARE]); |
| 49 | DECLARE_ALIGNED(32, uint8_t, output2[MAX_SB_SQUARE]); |
| 50 | |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 51 | for (int i = 0; i < h; ++i) |
| 52 | for (int j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand8(); |
| 53 | for (int i = 0; i < MAX_SB_SQUARE; ++i) |
| 54 | output[i] = output2[i] = rnd_.Rand31(); |
| 55 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 56 | // Make sure that sizes 2xN and Nx2 are also tested for chroma. |
| 57 | const int num_sizes = |
| 58 | (block_size_wide[block_idx] == 4 || block_size_high[block_idx] == 4) ? 2 |
| 59 | : 1; |
| 60 | for (int shift = 0; shift < num_sizes; ++shift) { // luma and chroma |
| 61 | const int out_w = block_size_wide[block_idx] >> shift; |
| 62 | const int out_h = block_size_high[block_idx] >> shift; |
| 63 | for (hfilter = EIGHTTAP_REGULAR; hfilter < INTERP_FILTERS_ALL; ++hfilter) { |
| 64 | for (vfilter = EIGHTTAP_REGULAR; vfilter < INTERP_FILTERS_ALL; |
| 65 | ++vfilter) { |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 66 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 67 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 68 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 69 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 70 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 71 | out_h); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 72 | for (int do_average = 0; do_average < 1; ++do_average) { |
| 73 | ConvolveParams conv_params1 = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 74 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 75 | ConvolveParams conv_params2 = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 76 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 77 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 78 | const int subx_range = has_subx ? 16 : 1; |
| 79 | const int suby_range = has_suby ? 16 : 1; |
| 80 | for (subx = 0; subx < subx_range; ++subx) { |
| 81 | for (suby = 0; suby < suby_range; ++suby) { |
| 82 | // Choose random locations within the source block |
| 83 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 84 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
| 85 | av1_convolve_2d_sr_c(input + offset_r * w + offset_c, w, output, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 86 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 87 | filter_params_y, subx, suby, &conv_params1); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 88 | test_impl(input + offset_r * w + offset_c, w, output2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 89 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 90 | filter_params_y, subx, suby, &conv_params2); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 91 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 92 | if (memcmp(output, output2, sizeof(output))) { |
| 93 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 94 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 95 | int idx = i * MAX_SB_SIZE + j; |
| 96 | ASSERT_EQ(output[idx], output2[idx]) |
| 97 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 98 | << idx << " = (" << i << ", " << j |
| 99 | << "), sub pixel offset = (" << suby << ", " << subx |
| 100 | << ")"; |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 101 | } |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | void AV1Convolve2DSrTest::RunSpeedTest(convolve_2d_func test_impl) { |
| 113 | const int w = kMaxSize, h = kMaxSize; |
| 114 | const int has_subx = GET_PARAM(1); |
| 115 | const int has_suby = GET_PARAM(2); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 116 | const int block_idx = GET_PARAM(3); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 117 | |
| 118 | uint8_t input[kMaxSize * kMaxSize]; |
| 119 | DECLARE_ALIGNED(32, uint8_t, output[MAX_SB_SQUARE]); |
| 120 | |
| 121 | for (int i = 0; i < h; ++i) |
| 122 | for (int j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand8(); |
| 123 | |
| 124 | int hfilter = EIGHTTAP_REGULAR, vfilter = EIGHTTAP_REGULAR; |
| 125 | int subx = 0, suby = 0; |
| 126 | |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 127 | const int do_average = 0; |
| 128 | ConvolveParams conv_params2 = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 129 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 130 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 131 | // Make sure that sizes 2xN and Nx2 are also tested for chroma. |
| 132 | const int num_sizes = |
| 133 | (block_size_wide[block_idx] == 4 || block_size_high[block_idx] == 4) ? 2 |
| 134 | : 1; |
| 135 | for (int shift = 0; shift < num_sizes; ++shift) { // luma and chroma |
| 136 | const int out_w = block_size_wide[block_idx] >> shift; |
| 137 | const int out_h = block_size_high[block_idx] >> shift; |
| 138 | const int num_loops = 1000000000 / (out_w + out_h); |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 139 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 140 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 141 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 142 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 143 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 144 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 145 | out_h); |
| 146 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 147 | aom_usec_timer timer; |
| 148 | aom_usec_timer_start(&timer); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 149 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 150 | for (int i = 0; i < num_loops; ++i) |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 151 | test_impl(input, w, output, MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 152 | filter_params_y, subx, suby, &conv_params2); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 153 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 154 | aom_usec_timer_mark(&timer); |
| 155 | const int elapsed_time = static_cast<int>(aom_usec_timer_elapsed(&timer)); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 156 | printf("%d,%d convolve %3dx%-3d: %7.2f us\n", has_subx, has_suby, out_w, |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 157 | out_h, 1000.0 * elapsed_time / num_loops); |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 158 | } |
| 159 | } |
| 160 | |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 161 | AV1JntConvolve2DTest::~AV1JntConvolve2DTest() {} |
| 162 | void AV1JntConvolve2DTest::SetUp() { |
| 163 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 164 | } |
| 165 | |
| 166 | void AV1JntConvolve2DTest::TearDown() { libaom_test::ClearSystemState(); } |
| 167 | |
| 168 | void AV1JntConvolve2DTest::RunCheckOutput(convolve_2d_func test_impl) { |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 169 | const int w = kMaxSize, h = kMaxSize; |
| 170 | const int has_subx = GET_PARAM(1); |
| 171 | const int has_suby = GET_PARAM(2); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 172 | const int block_idx = GET_PARAM(3); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 173 | int hfilter, vfilter, subx, suby; |
| 174 | uint8_t input[kMaxSize * kMaxSize]; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 175 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output1[MAX_SB_SQUARE]); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 176 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output2[MAX_SB_SQUARE]); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 177 | DECLARE_ALIGNED(16, uint8_t, output8_1[MAX_SB_SQUARE]); |
| 178 | DECLARE_ALIGNED(16, uint8_t, output8_2[MAX_SB_SQUARE]); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 179 | |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 180 | for (int i = 0; i < h; ++i) |
| 181 | for (int j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand8(); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 182 | for (int i = 0; i < MAX_SB_SQUARE; ++i) { |
| 183 | output1[i] = output2[i] = rnd_.Rand16(); |
| 184 | output8_1[i] = output8_2[i] = rnd_.Rand8(); |
| 185 | } |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 186 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 187 | const int out_w = block_size_wide[block_idx]; |
| 188 | const int out_h = block_size_high[block_idx]; |
| 189 | for (hfilter = EIGHTTAP_REGULAR; hfilter < INTERP_FILTERS_ALL; ++hfilter) { |
| 190 | for (vfilter = EIGHTTAP_REGULAR; vfilter < INTERP_FILTERS_ALL; ++vfilter) { |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 191 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 192 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 193 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 194 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 195 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 196 | out_h); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 197 | for (int do_average = 0; do_average <= 1; ++do_average) { |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 198 | ConvolveParams conv_params1 = |
| 199 | get_conv_params_no_round(do_average, 0, output1, MAX_SB_SIZE, 1, 8); |
| 200 | ConvolveParams conv_params2 = |
| 201 | get_conv_params_no_round(do_average, 0, output2, MAX_SB_SIZE, 1, 8); |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 202 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 203 | // Test special case where jnt_comp_avg is not used |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 204 | conv_params1.use_dist_wtd_comp_avg = 0; |
| 205 | conv_params2.use_dist_wtd_comp_avg = 0; |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 206 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 207 | const int subx_range = has_subx ? 16 : 1; |
| 208 | const int suby_range = has_suby ? 16 : 1; |
| 209 | for (subx = 0; subx < subx_range; ++subx) { |
| 210 | for (suby = 0; suby < suby_range; ++suby) { |
| 211 | // Choose random locations within the source block |
| 212 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 213 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 214 | av1_jnt_convolve_2d_c(input + offset_r * w + offset_c, w, output8_1, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 215 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 216 | filter_params_y, subx, suby, &conv_params1); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 217 | test_impl(input + offset_r * w + offset_c, w, output8_2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 218 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 219 | filter_params_y, subx, suby, &conv_params2); |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 220 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 221 | for (int i = 0; i < out_h; ++i) { |
| 222 | for (int j = 0; j < out_w; ++j) { |
| 223 | int idx = i * MAX_SB_SIZE + j; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 224 | ASSERT_EQ(output1[idx], output2[idx]) |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 225 | << "Mismatch at unit tests for av1_jnt_convolve_2d\n" |
| 226 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 227 | << idx << " = (" << i << ", " << j |
| 228 | << "), sub pixel offset = (" << suby << ", " << subx << ")"; |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 231 | |
| 232 | if (memcmp(output8_1, output8_2, sizeof(output8_1))) { |
| 233 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 234 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 235 | int idx = i * MAX_SB_SIZE + j; |
| 236 | ASSERT_EQ(output8_1[idx], output8_2[idx]) |
| 237 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 238 | << idx << " = (" << i << ", " << j |
| 239 | << "), sub pixel offset = (" << suby << ", " << subx |
| 240 | << ")"; |
| 241 | } |
| 242 | } |
| 243 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 244 | } |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 245 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 246 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 247 | // Test different combination of fwd and bck offset weights |
| 248 | for (int k = 0; k < 2; ++k) { |
| 249 | for (int l = 0; l < 4; ++l) { |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 250 | conv_params1.use_dist_wtd_comp_avg = 1; |
| 251 | conv_params2.use_dist_wtd_comp_avg = 1; |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 252 | conv_params1.fwd_offset = quant_dist_lookup_table[k][l][0]; |
| 253 | conv_params1.bck_offset = quant_dist_lookup_table[k][l][1]; |
| 254 | conv_params2.fwd_offset = quant_dist_lookup_table[k][l][0]; |
| 255 | conv_params2.bck_offset = quant_dist_lookup_table[k][l][1]; |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 256 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 257 | for (subx = 0; subx < subx_range; ++subx) { |
| 258 | for (suby = 0; suby < suby_range; ++suby) { |
| 259 | // Choose random locations within the source block |
| 260 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 261 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 262 | av1_jnt_convolve_2d_c(input + offset_r * w + offset_c, w, |
| 263 | output8_1, MAX_SB_SIZE, out_w, out_h, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 264 | filter_params_x, filter_params_y, subx, |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 265 | suby, &conv_params1); |
| 266 | test_impl(input + offset_r * w + offset_c, w, output8_2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 267 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 268 | filter_params_y, subx, suby, &conv_params2); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 269 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 270 | for (int i = 0; i < out_h; ++i) { |
| 271 | for (int j = 0; j < out_w; ++j) { |
| 272 | int idx = i * MAX_SB_SIZE + j; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 273 | ASSERT_EQ(output1[idx], output2[idx]) |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 274 | << "Mismatch at unit tests for " |
| 275 | "av1_jnt_convolve_2d\n" |
| 276 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 277 | << idx << " = (" << i << ", " << j |
| 278 | << "), sub pixel offset = (" << suby << ", " << subx |
| 279 | << ")"; |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 280 | } |
| 281 | } |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 282 | if (memcmp(output8_1, output8_2, sizeof(output8_1))) { |
| 283 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 284 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 285 | int idx = i * MAX_SB_SIZE + j; |
| 286 | ASSERT_EQ(output8_1[idx], output8_2[idx]) |
| 287 | << out_w << "x" << out_h |
| 288 | << " Pixel mismatch at index " << idx << " = (" << i |
| 289 | << ", " << j << "), sub pixel offset = (" << suby |
| 290 | << ", " << subx << ")"; |
| 291 | } |
| 292 | } |
| 293 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | } |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | } |
| 300 | } |
Cheng Chen | 03c7549 | 2017-11-02 16:38:14 -0700 | [diff] [blame] | 301 | } |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 302 | |
| 303 | void AV1JntConvolve2DTest::RunSpeedTest(convolve_2d_func test_impl) { |
| 304 | const int w = kMaxSize, h = kMaxSize; |
| 305 | const int has_subx = GET_PARAM(1); |
| 306 | const int has_suby = GET_PARAM(2); |
| 307 | const int block_idx = GET_PARAM(3); |
| 308 | |
| 309 | int subx = 0, suby = 0; |
| 310 | uint8_t input[kMaxSize * kMaxSize]; |
| 311 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output[MAX_SB_SQUARE]); |
| 312 | DECLARE_ALIGNED(16, uint8_t, output8[MAX_SB_SQUARE]); |
| 313 | int hfilter = EIGHTTAP_REGULAR, vfilter = EIGHTTAP_REGULAR; |
| 314 | for (int i = 0; i < h; ++i) |
| 315 | for (int j = 0; j < w; ++j) input[i * w + j] = rnd_.Rand8(); |
| 316 | for (int i = 0; i < MAX_SB_SQUARE; ++i) { |
| 317 | output[i] = rnd_.Rand16(); |
| 318 | output8[i] = rnd_.Rand8(); |
| 319 | } |
| 320 | |
| 321 | const int out_w = block_size_wide[block_idx]; |
| 322 | const int out_h = block_size_high[block_idx]; |
| 323 | const int num_loops = 1000000000 / (out_w + out_h); |
| 324 | const int do_average = 0; |
| 325 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 326 | const InterpFilterParams *filter_params_x = |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 327 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 328 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 329 | const InterpFilterParams *filter_params_y = |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 330 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 331 | out_h); |
| 332 | |
| 333 | ConvolveParams conv_params = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 334 | get_conv_params_no_round(do_average, 0, output, MAX_SB_SIZE, 1, 8); |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 335 | |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 336 | conv_params.use_dist_wtd_comp_avg = 0; |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 337 | |
| 338 | // Choose random locations within the source block |
| 339 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 340 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
| 341 | |
| 342 | aom_usec_timer timer; |
| 343 | aom_usec_timer_start(&timer); |
| 344 | |
| 345 | for (int i = 0; i < num_loops; ++i) |
| 346 | test_impl(input + offset_r * w + offset_c, w, output8, MAX_SB_SIZE, out_w, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 347 | out_h, filter_params_x, filter_params_y, subx, suby, |
Sanampudi Venkata Rao | 90134d3 | 2018-05-19 16:19:20 +0530 | [diff] [blame] | 348 | &conv_params); |
| 349 | |
| 350 | aom_usec_timer_mark(&timer); |
| 351 | const int elapsed_time = static_cast<int>(aom_usec_timer_elapsed(&timer)); |
| 352 | printf("%d,%d convolve %3dx%-3d: %7.2f us\n", has_subx, has_suby, out_w, |
| 353 | out_h, 1000.0 * elapsed_time / num_loops); |
| 354 | } |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 355 | } // namespace AV1Convolve2D |
| 356 | |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 357 | namespace AV1HighbdConvolve2D { |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 358 | ::testing::internal::ParamGenerator<HighbdConvolve2DParam> BuildParams( |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 359 | highbd_convolve_2d_func filter, int has_subx, int has_suby) { |
| 360 | return ::testing::Combine( |
Ravi Chaudhary | bc2bd03 | 2018-04-12 13:48:54 +0530 | [diff] [blame] | 361 | ::testing::Range(8, 13, 2), ::testing::Values(filter), |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 362 | ::testing::Values(has_subx), ::testing::Values(has_suby), |
| 363 | ::testing::Range(BLOCK_4X4, BLOCK_SIZES_ALL)); |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 364 | } |
| 365 | |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 366 | AV1HighbdConvolve2DSrTest::~AV1HighbdConvolve2DSrTest() {} |
| 367 | void AV1HighbdConvolve2DSrTest::SetUp() { |
| 368 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 369 | } |
| 370 | |
| 371 | void AV1HighbdConvolve2DSrTest::TearDown() { libaom_test::ClearSystemState(); } |
| 372 | |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 373 | void AV1HighbdConvolve2DSrTest::RunSpeedTest( |
| 374 | highbd_convolve_2d_func test_impl) { |
| 375 | const int w = kMaxSize, h = kMaxSize; |
| 376 | const int bd = GET_PARAM(0); |
Ravi Chaudhary | 79363c8 | 2018-03-08 18:46:41 +0530 | [diff] [blame] | 377 | const int has_subx = GET_PARAM(2); |
| 378 | const int has_suby = GET_PARAM(3); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 379 | const int block_idx = GET_PARAM(4); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 380 | int hfilter, vfilter, subx, suby; |
| 381 | uint16_t input[kMaxSize * kMaxSize]; |
| 382 | DECLARE_ALIGNED(32, uint16_t, output[MAX_SB_SQUARE]); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 383 | |
| 384 | for (int i = 0; i < h; ++i) |
| 385 | for (int j = 0; j < w; ++j) |
| 386 | input[i * w + j] = rnd_.Rand16() & ((1 << bd) - 1); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 387 | |
| 388 | hfilter = EIGHTTAP_REGULAR; |
| 389 | vfilter = EIGHTTAP_REGULAR; |
| 390 | int do_average = 0; |
| 391 | |
Ravi Chaudhary | 79363c8 | 2018-03-08 18:46:41 +0530 | [diff] [blame] | 392 | const int offset_r = 3; |
| 393 | const int offset_c = 3; |
| 394 | subx = 0; |
| 395 | suby = 0; |
| 396 | |
Ravi Chaudhary | 79363c8 | 2018-03-08 18:46:41 +0530 | [diff] [blame] | 397 | ConvolveParams conv_params = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 398 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd); |
Ravi Chaudhary | 79363c8 | 2018-03-08 18:46:41 +0530 | [diff] [blame] | 399 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 400 | // Make sure that sizes 2xN and Nx2 are also tested for chroma. |
| 401 | const int num_sizes = |
| 402 | (block_size_wide[block_idx] == 4 || block_size_high[block_idx] == 4) ? 2 |
| 403 | : 1; |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 404 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 405 | for (int shift = 0; shift < num_sizes; ++shift) { // luma and chroma |
| 406 | const int out_w = block_size_wide[block_idx] >> shift; |
| 407 | const int out_h = block_size_high[block_idx] >> shift; |
| 408 | const int num_loops = 1000000000 / (out_w + out_h); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 409 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 410 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 411 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 412 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 413 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 414 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 415 | out_h); |
| 416 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 417 | aom_usec_timer timer; |
| 418 | aom_usec_timer_start(&timer); |
| 419 | for (int i = 0; i < num_loops; ++i) |
| 420 | test_impl(input + offset_r * w + offset_c, w, output, MAX_SB_SIZE, out_w, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 421 | out_h, filter_params_x, filter_params_y, subx, suby, |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 422 | &conv_params, bd); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 423 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 424 | aom_usec_timer_mark(&timer); |
| 425 | const int elapsed_time = static_cast<int>(aom_usec_timer_elapsed(&timer)); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 426 | printf("%d,%d convolve %3dx%-3d: %7.2f us\n", has_subx, has_suby, out_w, |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 427 | out_h, 1000.0 * elapsed_time / num_loops); |
Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 428 | } |
| 429 | } |
| 430 | |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 431 | void AV1HighbdConvolve2DSrTest::RunCheckOutput( |
| 432 | highbd_convolve_2d_func test_impl) { |
| 433 | const int w = kMaxSize, h = kMaxSize; |
| 434 | const int bd = GET_PARAM(0); |
| 435 | const int has_subx = GET_PARAM(2); |
| 436 | const int has_suby = GET_PARAM(3); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 437 | const int block_idx = GET_PARAM(4); |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 438 | int hfilter, vfilter, subx, suby; |
| 439 | uint16_t input[kMaxSize * kMaxSize]; |
| 440 | DECLARE_ALIGNED(32, uint16_t, output[MAX_SB_SQUARE]); |
| 441 | DECLARE_ALIGNED(32, uint16_t, output2[MAX_SB_SQUARE]); |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 442 | |
| 443 | for (int i = 0; i < h; ++i) |
| 444 | for (int j = 0; j < w; ++j) |
| 445 | input[i * w + j] = rnd_.Rand16() & ((1 << bd) - 1); |
| 446 | for (int i = 0; i < MAX_SB_SQUARE; ++i) |
| 447 | output[i] = output2[i] = rnd_.Rand31(); |
| 448 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 449 | // Make sure that sizes 2xN and Nx2 are also tested for chroma. |
| 450 | const int num_sizes = |
| 451 | (block_size_wide[block_idx] == 4 || block_size_high[block_idx] == 4) ? 2 |
| 452 | : 1; |
| 453 | for (int shift = 0; shift < num_sizes; ++shift) { // luma and chroma |
| 454 | const int out_w = block_size_wide[block_idx] >> shift; |
| 455 | const int out_h = block_size_high[block_idx] >> shift; |
| 456 | for (hfilter = EIGHTTAP_REGULAR; hfilter < INTERP_FILTERS_ALL; ++hfilter) { |
| 457 | for (vfilter = EIGHTTAP_REGULAR; vfilter < INTERP_FILTERS_ALL; |
| 458 | ++vfilter) { |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 459 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 460 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 461 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 462 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 463 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 464 | out_h); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 465 | for (int do_average = 0; do_average < 1; ++do_average) { |
| 466 | ConvolveParams conv_params1 = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 467 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 468 | ConvolveParams conv_params2 = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 469 | get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd); |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 470 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 471 | const int subx_range = has_subx ? 16 : 1; |
| 472 | const int suby_range = has_suby ? 16 : 1; |
| 473 | for (subx = 0; subx < subx_range; ++subx) { |
| 474 | for (suby = 0; suby < suby_range; ++suby) { |
| 475 | // Choose random locations within the source block |
| 476 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 477 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
| 478 | av1_highbd_convolve_2d_sr_c(input + offset_r * w + offset_c, w, |
| 479 | output, MAX_SB_SIZE, out_w, out_h, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 480 | filter_params_x, filter_params_y, |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 481 | subx, suby, &conv_params1, bd); |
| 482 | test_impl(input + offset_r * w + offset_c, w, output2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 483 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 484 | filter_params_y, subx, suby, &conv_params2, bd); |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 485 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 486 | if (memcmp(output, output2, sizeof(output))) { |
| 487 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 488 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 489 | int idx = i * MAX_SB_SIZE + j; |
| 490 | ASSERT_EQ(output[idx], output2[idx]) |
| 491 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 492 | << idx << " = (" << i << ", " << j |
| 493 | << "), sub pixel offset = (" << suby << ", " << subx |
| 494 | << ")"; |
Cherma Rajan A | 09d4530 | 2018-02-22 17:25:15 +0530 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | } |
| 498 | } |
| 499 | } |
| 500 | } |
| 501 | } |
| 502 | } |
| 503 | } |
| 504 | } |
| 505 | |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 506 | AV1HighbdJntConvolve2DTest::~AV1HighbdJntConvolve2DTest() {} |
| 507 | void AV1HighbdJntConvolve2DTest::SetUp() { |
| 508 | rnd_.Reset(ACMRandom::DeterministicSeed()); |
| 509 | } |
| 510 | |
| 511 | void AV1HighbdJntConvolve2DTest::TearDown() { libaom_test::ClearSystemState(); } |
| 512 | |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 513 | void AV1HighbdJntConvolve2DTest::RunSpeedTest( |
| 514 | highbd_convolve_2d_func test_impl) { |
| 515 | const int w = kMaxSize, h = kMaxSize; |
| 516 | const int bd = GET_PARAM(0); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 517 | const int block_idx = GET_PARAM(4); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 518 | int hfilter, vfilter, subx, suby; |
| 519 | uint16_t input[kMaxSize * kMaxSize]; |
| 520 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output[MAX_SB_SQUARE]); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 521 | DECLARE_ALIGNED(32, uint16_t, output16[MAX_SB_SQUARE]); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 522 | |
| 523 | for (int i = 0; i < h; ++i) |
| 524 | for (int j = 0; j < w; ++j) |
| 525 | input[i * w + j] = rnd_.Rand16() & ((1 << bd) - 1); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 526 | for (int i = 0; i < MAX_SB_SQUARE; ++i) output[i] = rnd_.Rand16(); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 527 | hfilter = EIGHTTAP_REGULAR; |
| 528 | vfilter = EIGHTTAP_REGULAR; |
| 529 | int do_average = 0; |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 530 | const int out_w = block_size_wide[block_idx]; |
| 531 | const int out_h = block_size_high[block_idx]; |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 532 | |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 533 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 534 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 535 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 536 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 537 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 538 | out_h); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 539 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 540 | ConvolveParams conv_params = |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 541 | get_conv_params_no_round(do_average, 0, output, MAX_SB_SIZE, 1, bd); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 542 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 543 | // Test special case where jnt_comp_avg is not used |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 544 | conv_params.use_dist_wtd_comp_avg = 0; |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 545 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 546 | subx = 0; |
| 547 | suby = 0; |
| 548 | // Choose random locations within the source block |
| 549 | const int offset_r = 3; |
| 550 | const int offset_c = 3; |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 551 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 552 | const int num_loops = 1000000000 / (out_w + out_h); |
| 553 | aom_usec_timer timer; |
| 554 | aom_usec_timer_start(&timer); |
| 555 | for (int i = 0; i < num_loops; ++i) |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 556 | test_impl(input + offset_r * w + offset_c, w, output16, MAX_SB_SIZE, out_w, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 557 | out_h, filter_params_x, filter_params_y, subx, suby, &conv_params, |
| 558 | bd); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 559 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 560 | aom_usec_timer_mark(&timer); |
| 561 | const int elapsed_time = static_cast<int>(aom_usec_timer_elapsed(&timer)); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 562 | printf("convolve %3dx%-3d: %7.2f us\n", out_w, out_h, |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 563 | 1000.0 * elapsed_time / num_loops); |
Ravi Chaudhary | bb6a769 | 2018-03-02 15:30:05 +0530 | [diff] [blame] | 564 | } |
| 565 | |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 566 | void AV1HighbdJntConvolve2DTest::RunCheckOutput( |
| 567 | highbd_convolve_2d_func test_impl) { |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 568 | const int w = kMaxSize, h = kMaxSize; |
| 569 | const int bd = GET_PARAM(0); |
Cherma Rajan A | cb4622d | 2018-02-23 16:17:08 +0530 | [diff] [blame] | 570 | const int has_subx = GET_PARAM(2); |
| 571 | const int has_suby = GET_PARAM(3); |
sarahparker | 3c38cce | 2018-03-15 14:12:49 -0700 | [diff] [blame] | 572 | const int block_idx = GET_PARAM(4); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 573 | int hfilter, vfilter, subx, suby; |
| 574 | uint16_t input[kMaxSize * kMaxSize]; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 575 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output1[MAX_SB_SQUARE]); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 576 | DECLARE_ALIGNED(32, CONV_BUF_TYPE, output2[MAX_SB_SQUARE]); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 577 | DECLARE_ALIGNED(32, uint16_t, output16_1[MAX_SB_SQUARE]); |
| 578 | DECLARE_ALIGNED(32, uint16_t, output16_2[MAX_SB_SQUARE]); |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 579 | |
Linfeng Zhang | 5f0485b | 2018-01-09 10:21:57 -0800 | [diff] [blame] | 580 | for (int i = 0; i < h; ++i) |
| 581 | for (int j = 0; j < w; ++j) |
| 582 | input[i * w + j] = rnd_.Rand16() & ((1 << bd) - 1); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 583 | for (int i = 0; i < MAX_SB_SQUARE; ++i) { |
| 584 | output1[i] = output2[i] = rnd_.Rand16(); |
| 585 | output16_1[i] = output16_2[i] = rnd_.Rand16(); |
| 586 | } |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 587 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 588 | const int out_w = block_size_wide[block_idx]; |
| 589 | const int out_h = block_size_high[block_idx]; |
| 590 | for (hfilter = EIGHTTAP_REGULAR; hfilter < INTERP_FILTERS_ALL; ++hfilter) { |
| 591 | for (vfilter = EIGHTTAP_REGULAR; vfilter < INTERP_FILTERS_ALL; ++vfilter) { |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 592 | const InterpFilterParams *filter_params_x = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 593 | av1_get_interp_filter_params_with_block_size((InterpFilter)hfilter, |
| 594 | out_w); |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 595 | const InterpFilterParams *filter_params_y = |
Urvang Joshi | a99a263 | 2018-04-20 17:41:27 -0400 | [diff] [blame] | 596 | av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter, |
| 597 | out_h); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 598 | for (int do_average = 0; do_average <= 1; ++do_average) { |
| 599 | ConvolveParams conv_params1 = get_conv_params_no_round( |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 600 | do_average, 0, output1, MAX_SB_SIZE, 1, bd); |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 601 | ConvolveParams conv_params2 = get_conv_params_no_round( |
Peng Bin | f7b11f5 | 2018-08-09 17:29:39 +0800 | [diff] [blame] | 602 | do_average, 0, output2, MAX_SB_SIZE, 1, bd); |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 603 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 604 | // Test special case where jnt_comp_avg is not used |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 605 | conv_params1.use_dist_wtd_comp_avg = 0; |
| 606 | conv_params2.use_dist_wtd_comp_avg = 0; |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 607 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 608 | const int subx_range = has_subx ? 16 : 1; |
| 609 | const int suby_range = has_suby ? 16 : 1; |
| 610 | for (subx = 0; subx < subx_range; ++subx) { |
| 611 | for (suby = 0; suby < suby_range; ++suby) { |
| 612 | // Choose random locations within the source block |
| 613 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 614 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
| 615 | av1_highbd_jnt_convolve_2d_c(input + offset_r * w + offset_c, w, |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 616 | output16_1, MAX_SB_SIZE, out_w, out_h, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 617 | filter_params_x, filter_params_y, subx, |
| 618 | suby, &conv_params1, bd); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 619 | test_impl(input + offset_r * w + offset_c, w, output16_2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 620 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 621 | filter_params_y, subx, suby, &conv_params2, bd); |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 622 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 623 | for (int i = 0; i < out_h; ++i) { |
| 624 | for (int j = 0; j < out_w; ++j) { |
| 625 | int idx = i * MAX_SB_SIZE + j; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 626 | ASSERT_EQ(output1[idx], output2[idx]) |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 627 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 628 | << idx << " = (" << i << ", " << j |
| 629 | << "), sub pixel offset = (" << suby << ", " << subx << ")"; |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 630 | } |
| 631 | } |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 632 | |
| 633 | if (memcmp(output16_1, output16_2, sizeof(output16_1))) { |
| 634 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 635 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 636 | int idx = i * MAX_SB_SIZE + j; |
| 637 | ASSERT_EQ(output16_1[idx], output16_2[idx]) |
| 638 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 639 | << idx << " = (" << i << ", " << j |
| 640 | << "), sub pixel offset = (" << suby << ", " << subx |
| 641 | << ")"; |
| 642 | } |
| 643 | } |
| 644 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 645 | } |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 646 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 647 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 648 | // Test different combination of fwd and bck offset weights |
| 649 | for (int k = 0; k < 2; ++k) { |
| 650 | for (int l = 0; l < 4; ++l) { |
Debargha Mukherjee | 7ac3eb1 | 2018-12-12 10:26:50 -0800 | [diff] [blame] | 651 | conv_params1.use_dist_wtd_comp_avg = 1; |
| 652 | conv_params2.use_dist_wtd_comp_avg = 1; |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 653 | conv_params1.fwd_offset = quant_dist_lookup_table[k][l][0]; |
| 654 | conv_params1.bck_offset = quant_dist_lookup_table[k][l][1]; |
| 655 | conv_params2.fwd_offset = quant_dist_lookup_table[k][l][0]; |
| 656 | conv_params2.bck_offset = quant_dist_lookup_table[k][l][1]; |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 657 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 658 | const int subx_range = has_subx ? 16 : 1; |
| 659 | const int suby_range = has_suby ? 16 : 1; |
| 660 | for (subx = 0; subx < subx_range; ++subx) { |
| 661 | for (suby = 0; suby < suby_range; ++suby) { |
| 662 | // Choose random locations within the source block |
| 663 | const int offset_r = 3 + rnd_.PseudoUniform(h - out_h - 7); |
| 664 | const int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 665 | av1_highbd_jnt_convolve_2d_c( |
| 666 | input + offset_r * w + offset_c, w, output16_1, MAX_SB_SIZE, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 667 | out_w, out_h, filter_params_x, filter_params_y, subx, suby, |
| 668 | &conv_params1, bd); |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 669 | test_impl(input + offset_r * w + offset_c, w, output16_2, |
Peng Bin | 3a0c2ed | 2018-07-19 16:24:00 +0800 | [diff] [blame] | 670 | MAX_SB_SIZE, out_w, out_h, filter_params_x, |
| 671 | filter_params_y, subx, suby, &conv_params2, bd); |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 672 | |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 673 | for (int i = 0; i < out_h; ++i) { |
| 674 | for (int j = 0; j < out_w; ++j) { |
| 675 | int idx = i * MAX_SB_SIZE + j; |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 676 | ASSERT_EQ(output1[idx], output2[idx]) |
Sarah Parker | 30d4e53 | 2018-03-14 17:53:39 -0700 | [diff] [blame] | 677 | << out_w << "x" << out_h << " Pixel mismatch at index " |
| 678 | << idx << " = (" << i << ", " << j |
| 679 | << "), sub pixel offset = (" << suby << ", " << subx |
| 680 | << ")"; |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 681 | } |
| 682 | } |
Cherma Rajan A | a7be368 | 2018-03-20 10:00:51 +0530 | [diff] [blame] | 683 | |
| 684 | if (memcmp(output16_1, output16_2, sizeof(output16_1))) { |
| 685 | for (int i = 0; i < MAX_SB_SIZE; ++i) { |
| 686 | for (int j = 0; j < MAX_SB_SIZE; ++j) { |
| 687 | int idx = i * MAX_SB_SIZE + j; |
| 688 | ASSERT_EQ(output16_1[idx], output16_2[idx]) |
| 689 | << out_w << "x" << out_h |
| 690 | << " Pixel mismatch at index " << idx << " = (" << i |
| 691 | << ", " << j << "), sub pixel offset = (" << suby |
| 692 | << ", " << subx << ")"; |
| 693 | } |
| 694 | } |
| 695 | } |
Linfeng Zhang | a3e9c50 | 2018-01-09 10:04:20 -0800 | [diff] [blame] | 696 | } |
| 697 | } |
| 698 | } |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 699 | } |
| 700 | } |
| 701 | } |
| 702 | } |
Cheng Chen | 56d8b95 | 2017-11-03 18:55:55 -0700 | [diff] [blame] | 703 | } |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 704 | } // namespace AV1HighbdConvolve2D |
David Barker | 8295c7c | 2017-06-02 15:21:43 +0100 | [diff] [blame] | 705 | } // namespace libaom_test |