| /* |
| * Copyright (c) 2025, 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. |
| */ |
| #ifndef AOM_AOM_DSP_SAD_HWY_H_ |
| #define AOM_AOM_DSP_SAD_HWY_H_ |
| |
| #include "aom_dsp/reduce_sum_hwy.h" |
| #include "third_party/highway/hwy/highway.h" |
| |
| HWY_BEFORE_NAMESPACE(); |
| |
| namespace { |
| namespace HWY_NAMESPACE { |
| |
| namespace hn = hwy::HWY_NAMESPACE; |
| |
| template <int BlockWidth> |
| HWY_MAYBE_UNUSED unsigned int SumOfAbsoluteDiff( |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, |
| int ref_stride, int h, const uint8_t *second_pred = nullptr) { |
| constexpr hn::CappedTag<uint8_t, BlockWidth> pixel_tag; |
| constexpr hn::Repartition<uint64_t, decltype(pixel_tag)> intermediate_sum_tag; |
| const int vw = hn::Lanes(pixel_tag); |
| auto sum_sad = hn::Zero(intermediate_sum_tag); |
| const bool is_sad_avg = second_pred != nullptr; |
| for (int i = 0; i < h; ++i) { |
| for (int j = 0; j < BlockWidth; j += vw) { |
| auto src_vec = hn::LoadU(pixel_tag, &src_ptr[j]); |
| auto ref_vec = hn::LoadU(pixel_tag, &ref_ptr[j]); |
| if (is_sad_avg) { |
| auto sec_pred_vec = hn::LoadU(pixel_tag, &second_pred[j]); |
| ref_vec = hn::AverageRound(ref_vec, sec_pred_vec); |
| } |
| auto sad = hn::SumsOf8AbsDiff(src_vec, ref_vec); |
| sum_sad = hn::Add(sum_sad, sad); |
| } |
| src_ptr += src_stride; |
| ref_ptr += ref_stride; |
| if (is_sad_avg) { |
| second_pred += BlockWidth; |
| } |
| } |
| return static_cast<unsigned int>( |
| hn::ReduceSum(intermediate_sum_tag, sum_sad)); |
| } |
| |
| template <int BlockWidth, int NumRef> |
| HWY_MAYBE_UNUSED void SumOfAbsoluteDiffND(const uint8_t *src_ptr, |
| int src_stride, |
| const uint8_t *const ref_ptr[4], |
| int ref_stride, int h, |
| uint32_t res[4]) { |
| static_assert(NumRef == 3 || NumRef == 4, "NumRef must be 3 or 4."); |
| constexpr hn::CappedTag<uint8_t, BlockWidth> pixel_tag; |
| constexpr hn::Repartition<uint64_t, decltype(pixel_tag)> intermediate_sum_tag; |
| const int vw = hn::Lanes(pixel_tag); |
| auto sum_sad_0 = hn::Zero(intermediate_sum_tag); |
| auto sum_sad_1 = hn::Zero(intermediate_sum_tag); |
| auto sum_sad_2 = hn::Zero(intermediate_sum_tag); |
| auto sum_sad_3 = hn::Zero(intermediate_sum_tag); |
| const uint8_t *ref_0, *ref_1, *ref_2, *ref_3; |
| ref_0 = ref_ptr[0]; |
| ref_1 = ref_ptr[1]; |
| ref_2 = ref_ptr[2]; |
| if (NumRef == 4) { |
| ref_3 = ref_ptr[3]; |
| } |
| for (int i = 0; i < h; ++i) { |
| for (int j = 0; j < BlockWidth; j += vw) { |
| auto src_vec = hn::LoadU(pixel_tag, &src_ptr[j]); |
| auto ref_vec_0 = hn::LoadU(pixel_tag, &ref_0[j]); |
| auto ref_vec_1 = hn::LoadU(pixel_tag, &ref_1[j]); |
| auto ref_vec_2 = hn::LoadU(pixel_tag, &ref_2[j]); |
| auto sad_0 = hn::SumsOf8AbsDiff(src_vec, ref_vec_0); |
| auto sad_1 = hn::SumsOf8AbsDiff(src_vec, ref_vec_1); |
| auto sad_2 = hn::SumsOf8AbsDiff(src_vec, ref_vec_2); |
| sum_sad_0 = hn::Add(sum_sad_0, sad_0); |
| sum_sad_1 = hn::Add(sum_sad_1, sad_1); |
| sum_sad_2 = hn::Add(sum_sad_2, sad_2); |
| if (NumRef == 4) { |
| auto ref_vec_3 = hn::LoadU(pixel_tag, &ref_3[j]); |
| auto sad_3 = hn::SumsOf8AbsDiff(src_vec, ref_vec_3); |
| sum_sad_3 = hn::Add(sum_sad_3, sad_3); |
| } |
| } |
| src_ptr += src_stride; |
| ref_0 += ref_stride; |
| ref_1 += ref_stride; |
| ref_2 += ref_stride; |
| if (NumRef == 4) { |
| ref_3 += ref_stride; |
| } |
| } |
| constexpr hn::Repartition<uint32_t, decltype(pixel_tag)> uint32_tag; |
| auto r02 = hn::InterleaveEven(uint32_tag, hn::BitCast(uint32_tag, sum_sad_0), |
| hn::BitCast(uint32_tag, sum_sad_2)); |
| auto r13 = hn::InterleaveEven(uint32_tag, hn::BitCast(uint32_tag, sum_sad_1), |
| hn::BitCast(uint32_tag, sum_sad_3)); |
| auto r0123 = hn::Add(hn::InterleaveLower(uint32_tag, r02, r13), |
| hn::InterleaveUpper(uint32_tag, r02, r13)); |
| |
| auto block_sum = BlockReduceSum(uint32_tag, r0123); |
| constexpr hn::FixedTag<uint32_t, 4> block_sum_tag; |
| hn::StoreU(block_sum, block_sum_tag, res); |
| } |
| |
| } // namespace HWY_NAMESPACE |
| } // namespace |
| |
| #define FSAD(w, h, suffix) \ |
| extern "C" unsigned int aom_sad##w##x##h##_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride); \ |
| HWY_ATTR unsigned int aom_sad##w##x##h##_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride) { \ |
| return HWY_NAMESPACE::SumOfAbsoluteDiff<w>(src_ptr, src_stride, ref_ptr, \ |
| ref_stride, h); \ |
| } |
| |
| #define FSAD_4D(w, h, suffix) \ |
| extern "C" void aom_sad##w##x##h##x4d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]); \ |
| HWY_ATTR void aom_sad##w##x##h##x4d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]) { \ |
| HWY_NAMESPACE::SumOfAbsoluteDiffND<w, 4>(src_ptr, src_stride, ref_ptr, \ |
| ref_stride, h, res); \ |
| } |
| |
| #define FSAD_3D(w, h, suffix) \ |
| extern "C" void aom_sad##w##x##h##x3d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]); \ |
| HWY_ATTR void aom_sad##w##x##h##x3d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]) { \ |
| HWY_NAMESPACE::SumOfAbsoluteDiffND<w, 3>(src_ptr, src_stride, ref_ptr, \ |
| ref_stride, h, res); \ |
| } |
| |
| #define FSAD_SKIP(w, h, suffix) \ |
| extern "C" unsigned int aom_sad_skip_##w##x##h##_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride); \ |
| HWY_ATTR unsigned int aom_sad_skip_##w##x##h##_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride) { \ |
| return 2 * HWY_NAMESPACE::SumOfAbsoluteDiff<w>( \ |
| src_ptr, src_stride * 2, ref_ptr, ref_stride * 2, h / 2); \ |
| } |
| |
| #define FSAD_4D_SKIP(w, h, suffix) \ |
| extern "C" void aom_sad_skip_##w##x##h##x4d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]); \ |
| HWY_ATTR void aom_sad_skip_##w##x##h##x4d_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *const ref_ptr[4], \ |
| int ref_stride, uint32_t res[4]) { \ |
| HWY_NAMESPACE::SumOfAbsoluteDiffND<w, 4>(src_ptr, 2 * src_stride, ref_ptr, \ |
| 2 * ref_stride, ((h) >> 1), res); \ |
| res[0] <<= 1; \ |
| res[1] <<= 1; \ |
| res[2] <<= 1; \ |
| res[3] <<= 1; \ |
| } |
| |
| #define FSAD_AVG(w, h, suffix) \ |
| extern "C" unsigned int aom_sad##w##x##h##_avg_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride, const uint8_t *second_pred); \ |
| HWY_ATTR unsigned int aom_sad##w##x##h##_avg_##suffix( \ |
| const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, \ |
| int ref_stride, const uint8_t *second_pred) { \ |
| return HWY_NAMESPACE::SumOfAbsoluteDiff<w>(src_ptr, src_stride, ref_ptr, \ |
| ref_stride, h, second_pred); \ |
| } |
| |
| #define FOR_EACH_SAD_BLOCK_SIZE(X, suffix) \ |
| X(128, 128, suffix) \ |
| X(128, 64, suffix) \ |
| X(64, 128, suffix) \ |
| X(64, 64, suffix) \ |
| X(64, 32, suffix) |
| |
| HWY_AFTER_NAMESPACE(); |
| |
| #endif // AOM_AOM_DSP_SAD_HWY_H_ |