uvg266/src/strategies/avx2/sao-avx2.c

673 lines
28 KiB
C
Raw Normal View History

/*****************************************************************************
* This file is part of Kvazaar HEVC encoder.
*
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
* COPYING file).
*
* Kvazaar is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* Kvazaar is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "strategies/avx2/sao-avx2.h"
#if COMPILE_INTEL_AVX2
#include <immintrin.h>
#include <nmmintrin.h>
#include "strategies/generic/sao_band_ddistortion.h"
#include "cu.h"
#include "encoder.h"
#include "encoderstate.h"
#include "kvazaar.h"
#include "sao.h"
#include "strategyselector.h"
2016-03-16 17:36:47 +00:00
// These optimizations are based heavily on sao-generic.c.
// Might be useful to check that if (when) this file
// is difficult to understand.
2019-03-22 12:56:51 +00:00
static INLINE __m128i load_6_pixels(const kvz_pixel* data)
{
2019-07-15 13:49:22 +00:00
return _mm_insert_epi16(_mm_cvtsi32_si128(*(int32_t*)&(data[0])), *(int16_t*)&(data[4]), 2);
2019-03-22 12:56:51 +00:00
}
// Mapping of edge_idx values to eo-classes.
static int sao_calc_eo_cat(kvz_pixel a, kvz_pixel b, kvz_pixel c)
2017-07-11 07:02:01 +00:00
{
2019-07-15 13:49:22 +00:00
// Mapping relationships between a, b and c to eo_idx.
static const int sao_eo_idx_to_eo_category[] = { 1, 2, 0, 3, 4 };
2019-07-15 13:49:22 +00:00
int eo_idx = 2 + SIGN3((int)c - (int)a) + SIGN3((int)c - (int)b);
2019-07-15 13:49:22 +00:00
//printf("%d ", SIGN3((int)c - (int)a));
return sao_eo_idx_to_eo_category[eo_idx];
2016-03-16 17:42:56 +00:00
}
// Mapping of edge_idx values to eo-classes.
2019-03-22 12:56:51 +00:00
static __m256i sao_calc_eo_cat_avx2(__m128i* vector_a_epi8, __m128i* vector_b_epi8, __m128i* vector_c_epi8)
2018-08-21 12:54:56 +00:00
{
2019-07-15 13:49:22 +00:00
// Mapping relationships between a, b and c to eo_idx.
__m256i vector_sao_eo_idx_to_eo_category_epi32 = _mm256_setr_epi32(1, 2, 0, 3, 4, 0, 0, 0);
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i eo_idx_epi32 = _mm256_set1_epi32(2);
__m256i vector_a_epi32 = _mm256_cvtepu8_epi32(*vector_a_epi8);
__m256i vector_b_epi32 = _mm256_cvtepu8_epi32(*vector_b_epi8);
__m256i vector_c_epi32 = _mm256_cvtepu8_epi32(*vector_c_epi8);
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i temp1_epi32 = _mm256_sign_epi32(_mm256_set1_epi32(1), _mm256_sub_epi32(vector_c_epi32, vector_a_epi32));
__m256i temp2_epi32 = _mm256_sign_epi32(_mm256_set1_epi32(1), _mm256_sub_epi32(vector_c_epi32, vector_b_epi32));
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
eo_idx_epi32 = _mm256_add_epi32(eo_idx_epi32, temp1_epi32);
eo_idx_epi32 = _mm256_add_epi32(eo_idx_epi32, temp2_epi32);
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = _mm256_permutevar8x32_epi32(vector_sao_eo_idx_to_eo_category_epi32, eo_idx_epi32);
return v_cat_epi32;
2018-08-21 12:54:56 +00:00
}
/*
2017-07-11 07:02:01 +00:00
static int sao_edge_ddistortion_avx2(const kvz_pixel *orig_data,
const kvz_pixel *rec_data,
int block_width,
int block_height,
int eo_class,
int offsets[NUM_SAO_EDGE_CATEGORIES])
2018-08-21 12:54:56 +00:00
{
2019-07-15 13:49:22 +00:00
int y, x;
vector2d_t a_ofs = g_sao_edge_offsets[eo_class][0];
vector2d_t b_ofs = g_sao_edge_offsets[eo_class][1];
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i offsets_epi32 = _mm256_inserti128_si256(_mm256_castsi128_si256(_mm_loadu_si128((__m128i*) offsets)), _mm_insert_epi32(_mm_setzero_si128(), offsets[4], 0), 1);
__m256i tmp_diff_epi32;
__m256i tmp_sum_epi32 = _mm256_setzero_si256();
__m256i tmp_offset_epi32;
__m256i tmp1_vec_epi32;
__m256i tmp2_vec_epi32;
2019-07-15 13:49:22 +00:00
int sum = 0;
for (y = 1; y < block_height - 1; ++y) {
for (x = 1; x < block_width - 8; x+=8) {
const kvz_pixel *c_data = &rec_data[y * block_width + x];
2019-07-15 13:49:22 +00:00
__m128i vector_a_epi8 = _mm_loadl_epi64((__m128i*)&c_data[a_ofs.y * block_width + a_ofs.x]);
__m128i vector_c_epi8 = _mm_loadl_epi64((__m128i*)&c_data[0]);
__m128i vector_b_epi8 = _mm_loadl_epi64((__m128i*)&c_data[b_ofs.y * block_width + b_ofs.x]);
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = sao_calc_eo_cat_avx2(&vector_a_epi8, &vector_b_epi8, &vector_c_epi8);
2019-07-15 13:49:22 +00:00
tmp_diff_epi32 = _mm256_sub_epi32(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i* __restrict)&(orig_data[y * block_width + x]))), _mm256_cvtepu8_epi32(vector_c_epi8));
2019-07-15 13:49:22 +00:00
tmp_offset_epi32 = _mm256_permutevar8x32_epi32(offsets_epi32, v_cat_epi32);
2019-07-15 13:49:22 +00:00
// (diff - offset) * (diff - offset)
tmp1_vec_epi32 = _mm256_mullo_epi32(_mm256_sub_epi32(tmp_diff_epi32, tmp_offset_epi32), _mm256_sub_epi32(tmp_diff_epi32, tmp_offset_epi32));
2019-07-15 13:49:22 +00:00
// diff * diff
tmp2_vec_epi32 = _mm256_mullo_epi32(tmp_diff_epi32, tmp_diff_epi32);
2019-07-15 13:49:22 +00:00
// Offset is applied to reconstruction, so it is subtracted from diff.
// sum += (diff - offset) * (diff - offset) - diff * diff;
tmp_sum_epi32 = _mm256_add_epi32(tmp_sum_epi32, _mm256_sub_epi32(tmp1_vec_epi32, tmp2_vec_epi32));
}
2016-03-16 17:42:56 +00:00
2019-07-15 13:49:22 +00:00
// Load the last 6 pixels to use
2019-07-15 13:49:22 +00:00
const kvz_pixel *c_data = &rec_data[y * block_width + x];
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m128i vector_a_epi8 = load_6_pixels(&c_data[a_ofs.y * block_width + a_ofs.x]);
__m128i vector_c_epi8 = load_6_pixels(c_data);
__m128i vector_b_epi8 = load_6_pixels(&c_data[b_ofs.y * block_width + b_ofs.x]);
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = sao_calc_eo_cat_avx2(&vector_a_epi8, &vector_b_epi8, &vector_c_epi8);
2019-07-15 13:49:22 +00:00
const kvz_pixel* orig_ptr = &(orig_data[y * block_width + x]);
2019-07-15 13:49:22 +00:00
tmp_diff_epi32 = _mm256_cvtepu8_epi32(load_6_pixels(orig_ptr));
2019-07-15 13:49:22 +00:00
tmp_diff_epi32 = _mm256_sub_epi32(tmp_diff_epi32, _mm256_cvtepu8_epi32(vector_c_epi8));
2019-07-15 13:49:22 +00:00
tmp_offset_epi32 = _mm256_permutevar8x32_epi32(offsets_epi32, v_cat_epi32);
2019-07-15 13:49:22 +00:00
// (diff - offset) * (diff - offset)
tmp1_vec_epi32 = _mm256_mullo_epi32(_mm256_sub_epi32(tmp_diff_epi32, tmp_offset_epi32), _mm256_sub_epi32(tmp_diff_epi32, tmp_offset_epi32));
2016-03-16 17:44:28 +00:00
2019-07-15 13:49:22 +00:00
// diff * diff
tmp2_vec_epi32 = _mm256_mullo_epi32(tmp_diff_epi32, tmp_diff_epi32);
2019-07-15 13:49:22 +00:00
// Offset is applied to reconstruction, so it is subtracted from diff.
// sum += (diff - offset) * (diff - offset) - diff * diff;
2019-07-15 13:49:22 +00:00
tmp_sum_epi32 = _mm256_add_epi32(tmp_sum_epi32, _mm256_sub_epi32(tmp1_vec_epi32, tmp2_vec_epi32));
2016-03-16 17:44:28 +00:00
2019-07-15 13:49:22 +00:00
tmp_sum_epi32 = _mm256_hadd_epi32(tmp_sum_epi32, tmp_sum_epi32);
tmp_sum_epi32 = _mm256_hadd_epi32(tmp_sum_epi32, tmp_sum_epi32);
2018-08-31 13:59:49 +00:00
2019-07-15 13:49:22 +00:00
tmp_sum_epi32 = _mm256_add_epi32(tmp_sum_epi32, _mm256_shuffle_epi32(tmp_sum_epi32, _MM_SHUFFLE(0, 1, 0, 1)));
sum += _mm_cvtsi128_si32(_mm256_castsi256_si128(tmp_sum_epi32));
2019-07-15 13:49:22 +00:00
tmp_sum_epi32 = _mm256_setzero_si256();
}
return sum;
}
*/
2018-08-21 12:54:56 +00:00
2019-05-31 13:39:22 +00:00
/**
* \param orig_data Original pixel data. 64x64 for luma, 32x32 for chroma.
* \param rec_data Reconstructed pixel data. 64x64 for luma, 32x32 for chroma.
* \param dir_offsets
* \param is_chroma 0 for luma, 1 for chroma. Indicates
*/
2019-05-31 13:39:22 +00:00
// For some reason this solution doesn't work currently. Bug appears while adding. Counting should work
2018-08-23 13:21:55 +00:00
static void calc_sao_edge_dir_avx2(const kvz_pixel *orig_data,
2018-08-21 12:54:56 +00:00
const kvz_pixel *rec_data,
int eo_class,
int block_width,
int block_height,
int cat_sum_cnt[2][NUM_SAO_EDGE_CATEGORIES])
{
2019-07-15 13:49:22 +00:00
int y, x;
vector2d_t a_ofs = g_sao_edge_offsets[eo_class][0];
vector2d_t b_ofs = g_sao_edge_offsets[eo_class][1];
// Arrays orig_data and rec_data are quarter size for chroma.
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
// Don't sample the edge pixels because this function doesn't have access to
// their neighbours.
__m256i zeros_epi32 = _mm256_setzero_si256();
__m256i ones_epi32 = _mm256_set1_epi32(1);
__m256i twos_epi32 = _mm256_set1_epi32(2);
__m256i threes_epi32 = _mm256_set1_epi32(3);
__m256i fours_epi32 = _mm256_set1_epi32(4);
2019-07-15 13:49:22 +00:00
__m256i v_diff_accum[NUM_SAO_EDGE_CATEGORIES] = { { 0 } };
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m256i temp_epi32 = _mm256_setzero_si256();
__m256i temp_mem_epi32 = _mm256_setzero_si256();
2019-07-15 13:49:22 +00:00
for (y = 1; y < block_height - 1; ++y) {
for (x = 1; x < block_width - 8; x += 8) {
const kvz_pixel *c_data = &rec_data[y * block_width + x];
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
__m128i vector_a_epi8 = _mm_loadl_epi64((__m128i*)&c_data[a_ofs.y * block_width + a_ofs.x]);
__m128i vector_c_epi8 = _mm_loadl_epi64((__m128i*)c_data);
__m128i vector_b_epi8 = _mm_loadl_epi64((__m128i*)&c_data[b_ofs.y * block_width + b_ofs.x]);
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = sao_calc_eo_cat_avx2(&vector_a_epi8, &vector_b_epi8, &vector_c_epi8);
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
// Check wich values are right for specific cat amount.
// It's done for every single value that cat could get {1, 2, 0, 3, 4}
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
// v_cat == 0
__m256i mask_epi32 = _mm256_cmpeq_epi32(zeros_epi32, v_cat_epi32);
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
temp_mem_epi32 = _mm256_sub_epi32(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i*)&(orig_data[y * block_width + x]))), _mm256_cvtepu8_epi32(vector_c_epi8));
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[0] = _mm256_add_epi32(v_diff_accum[0], temp_epi32);
int temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32))/ 4;
cat_sum_cnt[1][0] += temp_cnt;
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
// v_cat == 1
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(ones_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[1] = _mm256_add_epi32(v_diff_accum[1], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][1] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
// v_cat == 2
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(twos_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[2] = _mm256_add_epi32(v_diff_accum[2], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][2] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
// v_cat == 3
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(threes_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[3] = _mm256_add_epi32(v_diff_accum[3], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][3] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
// v_cat == 4
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(fours_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[4] = _mm256_add_epi32(v_diff_accum[4], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][4] += temp_cnt;
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
}
2018-08-21 12:54:56 +00:00
2019-07-15 13:49:22 +00:00
if (block_width - x - 1 >= 6) {
const kvz_pixel *c_data = &rec_data[y * block_width + x];
2019-07-15 13:49:22 +00:00
__m128i vector_a_epi8 = load_6_pixels(&c_data[a_ofs.y * block_width + a_ofs.x]);
__m128i vector_c_epi8 = load_6_pixels(c_data);
__m128i vector_b_epi8 = load_6_pixels(&c_data[b_ofs.y * block_width + b_ofs.x]);
2016-03-16 17:44:28 +00:00
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = sao_calc_eo_cat_avx2(&vector_a_epi8, &vector_b_epi8, &vector_c_epi8);
2019-07-15 13:49:22 +00:00
const kvz_pixel* orig_ptr = &(orig_data[y * block_width + x]);
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
temp_mem_epi32 = _mm256_cvtepu8_epi32(load_6_pixels(orig_ptr));
2019-07-15 13:49:22 +00:00
temp_mem_epi32 = _mm256_sub_epi32(temp_mem_epi32, _mm256_cvtepu8_epi32(vector_c_epi8));
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
// Check wich values are right for specific cat amount.
// It's done for every single value that cat could get {1, 2, 0, 3, 4}
//--------------------------------------------------------------------------
__m256i mask_epi32 = _mm256_cmpeq_epi32(zeros_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[0] = _mm256_add_epi32(v_diff_accum[0], temp_epi32);
int temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4 - 2;
cat_sum_cnt[1][0] += temp_cnt;
//--------------------------------------------------------------------------
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(ones_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[1] = _mm256_add_epi32(v_diff_accum[1], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][1] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(twos_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[2] = _mm256_add_epi32(v_diff_accum[2], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][2] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
2019-05-31 13:39:22 +00:00
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(threes_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[3] = _mm256_add_epi32(v_diff_accum[3], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][3] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
2019-07-15 13:49:22 +00:00
mask_epi32 = _mm256_cmpeq_epi32(fours_epi32, v_cat_epi32);
temp_epi32 = _mm256_and_si256(temp_mem_epi32, mask_epi32);
v_diff_accum[4] = _mm256_add_epi32(v_diff_accum[4], temp_epi32);
temp_cnt = _mm_popcnt_u32(_mm256_movemask_epi8(mask_epi32)) / 4;
cat_sum_cnt[1][4] += temp_cnt;
2019-07-15 13:49:22 +00:00
//--------------------------------------------------------------------------
x += 6;
}
2019-07-15 13:49:22 +00:00
// If odd number of pixels left, use this
for (; x < block_width - 1; ++x) {
2019-07-15 13:49:22 +00:00
const kvz_pixel *c_data = &rec_data[y * block_width + x];
kvz_pixel a = c_data[a_ofs.y * block_width + a_ofs.x];
kvz_pixel c = c_data[0];
kvz_pixel b = c_data[b_ofs.y * block_width + b_ofs.x];
2019-07-15 13:49:22 +00:00
int eo_cat = sao_calc_eo_cat(a, b, c);
cat_sum_cnt[0][eo_cat] += orig_data[y * block_width + x] - c;
cat_sum_cnt[1][eo_cat] += 1;
}
2019-05-31 13:39:22 +00:00
}
2019-05-31 13:39:22 +00:00
for (int eo_cat = 0; eo_cat < NUM_SAO_EDGE_CATEGORIES; ++eo_cat) {
2019-07-15 13:49:22 +00:00
int accum = 0;
//Full horizontal sum of accumulated values
v_diff_accum[eo_cat] = _mm256_add_epi32(v_diff_accum[eo_cat], _mm256_castsi128_si256(_mm256_extracti128_si256(v_diff_accum[eo_cat], 1)));
v_diff_accum[eo_cat] = _mm256_add_epi32(v_diff_accum[eo_cat], _mm256_shuffle_epi32(v_diff_accum[eo_cat], _MM_SHUFFLE(1, 0, 3, 2)));
v_diff_accum[eo_cat] = _mm256_add_epi32(v_diff_accum[eo_cat], _mm256_shuffle_epi32(v_diff_accum[eo_cat], _MM_SHUFFLE(0, 1, 0, 1)));
accum += _mm_cvtsi128_si32(_mm256_castsi256_si128(v_diff_accum[eo_cat]));
cat_sum_cnt[0][eo_cat] += accum;
}
}
static void sao_reconstruct_color_avx2(const encoder_control_t * const encoder,
const kvz_pixel *rec_data,
kvz_pixel *new_rec_data,
const sao_info_t *sao,
int stride,
int new_stride,
int block_width,
int block_height,
color_t color_i)
{
2019-07-15 13:49:22 +00:00
// Arrays orig_data and rec_data are quarter size for chroma.
int offset_v = color_i == COLOR_V ? 5 : 0;
if (sao->type == SAO_TYPE_BAND) {
int offsets[1 << KVZ_BIT_DEPTH];
kvz_calc_sao_offset_array(encoder, sao, offsets, color_i);
unsigned char*temp;
2019-07-15 13:49:22 +00:00
for (int y = 0; y < block_height; ++y) {
for (int x = 0; x < block_width; x+=32) {
2019-07-15 13:49:22 +00:00
//new_rec_data[y * new_stride + x] = offsets[rec_data[y * stride + x]];
2019-07-15 13:49:22 +00:00
bool atleast_32_elements = (block_width - x) > 31;
bool atleast_16_elements = (block_width - x) > 15;
2019-07-15 13:49:22 +00:00
int choose = atleast_32_elements + atleast_16_elements;
2019-07-15 13:49:22 +00:00
switch (choose) {
2019-07-15 13:49:22 +00:00
case 2:;
2019-07-15 13:49:22 +00:00
__m256i rec_data_256_epi8 = _mm256_loadu_si256((__m256i*)&rec_data[y * stride + x]);
temp = (unsigned char*)&rec_data_256_epi8;
2019-07-15 13:49:22 +00:00
__m256i offsets_256_epi8 = _mm256_set_epi8(offsets[temp[31]], offsets[temp[30]], offsets[temp[29]], offsets[temp[28]], offsets[temp[27]], offsets[temp[26]], offsets[temp[25]],
offsets[temp[24]], offsets[temp[23]], offsets[temp[22]], offsets[temp[21]], offsets[temp[20]], offsets[temp[19]], offsets[temp[18]], offsets[temp[17]], offsets[temp[16]],
offsets[temp[15]], offsets[temp[14]], offsets[temp[13]], offsets[temp[12]], offsets[temp[11]], offsets[temp[10]], offsets[temp[9]],
offsets[temp[8]], offsets[temp[7]], offsets[temp[6]], offsets[temp[5]], offsets[temp[4]], offsets[temp[3]], offsets[temp[2]], offsets[temp[1]], offsets[temp[0]]);
_mm256_storeu_si256((__m256i*)& new_rec_data[y * new_stride + x], offsets_256_epi8);
break;
2019-07-15 13:49:22 +00:00
case 1:;
2019-07-15 13:49:22 +00:00
__m128i rec_data_128_epi8 = _mm_loadu_si128((__m128i*)&rec_data[y * stride + x]);
temp = (unsigned char*)&rec_data_128_epi8;
__m128i offsets_128_epi8 = _mm_set_epi8(offsets[temp[15]], offsets[temp[14]], offsets[temp[13]], offsets[temp[12]], offsets[temp[11]], offsets[temp[10]], offsets[temp[9]],
offsets[temp[8]], offsets[temp[7]], offsets[temp[6]], offsets[temp[5]], offsets[temp[4]], offsets[temp[3]], offsets[temp[2]], offsets[temp[1]], offsets[temp[0]]);
_mm_storeu_si128((__m128i*)& new_rec_data[y * new_stride + x], offsets_128_epi8);
2019-07-15 13:49:22 +00:00
for (int i = x; i < block_width; i++) {
new_rec_data[y * new_stride + i] = offsets[rec_data[y * stride + i]];
}
break;
2019-03-04 14:55:39 +00:00
2019-07-15 13:49:22 +00:00
default:;
for (int i = x; i < block_width; i++) {
new_rec_data[y * new_stride + i] = offsets[rec_data[y * stride + i]];
}
break;
}
}
}
2018-08-31 13:59:49 +00:00
}
2019-07-15 13:49:22 +00:00
else {
2019-07-15 13:49:22 +00:00
// Don't sample the edge pixels because this function doesn't have access to
// their neighbours.
2019-07-15 13:49:22 +00:00
__m256i offset_v_epi32 = _mm256_set1_epi32(offset_v);
2019-07-15 13:49:22 +00:00
vector2d_t a_ofs = g_sao_edge_offsets[sao->eo_class][0];
vector2d_t b_ofs = g_sao_edge_offsets[sao->eo_class][1];
2019-07-15 13:49:22 +00:00
for (int y = 0; y < block_height; ++y) {
int x;
for (x = 0; x < block_width; x += 8) {
2019-07-15 13:49:22 +00:00
bool use_8_elements = (block_width - x) >= 8;
if (use_8_elements) {
2019-07-15 13:49:22 +00:00
const kvz_pixel *c_data = &rec_data[y * stride + x];
2019-07-15 13:49:22 +00:00
__m128i vector_a_epi8 = _mm_loadl_epi64((__m128i*)&c_data[a_ofs.y * stride + a_ofs.x]);
__m128i vector_c_epi8 = _mm_loadl_epi64((__m128i*)&c_data[0]);
__m128i vector_b_epi8 = _mm_loadl_epi64((__m128i*)&c_data[b_ofs.y * stride + b_ofs.x]);
2019-07-15 13:49:22 +00:00
__m256i v_cat_epi32 = sao_calc_eo_cat_avx2(&vector_a_epi8, &vector_b_epi8, &vector_c_epi8);
2019-07-15 13:49:22 +00:00
v_cat_epi32 = _mm256_add_epi32(v_cat_epi32, offset_v_epi32);
2019-07-15 13:49:22 +00:00
__m256i vector_c_data0_epi32 = _mm256_cvtepu8_epi32(vector_c_epi8);
2019-07-15 13:49:22 +00:00
int*temp = (int*)&v_cat_epi32;
__m256i vector_sao_offsets_epi32 = _mm256_set_epi32(sao->offsets[temp[7]], sao->offsets[temp[6]], sao->offsets[temp[5]], sao->offsets[temp[4]], sao->offsets[temp[3]], sao->offsets[temp[2]], sao->offsets[temp[1]], sao->offsets[temp[0]]);
vector_sao_offsets_epi32 = _mm256_add_epi32(vector_sao_offsets_epi32, vector_c_data0_epi32);
2019-03-04 14:55:39 +00:00
2019-07-15 13:49:22 +00:00
// Convert int to int8_t
__m256i temp_epi16 = _mm256_packus_epi32(vector_sao_offsets_epi32, vector_sao_offsets_epi32);
temp_epi16 = _mm256_permute4x64_epi64(temp_epi16, _MM_SHUFFLE(3, 1, 2, 0));
__m256i temp_epi8 = _mm256_packus_epi16(temp_epi16, temp_epi16);
2019-07-15 13:49:22 +00:00
// Store 64-bits from vector to memory
_mm_storel_epi64((__m128i*)&(new_rec_data[y * new_stride + x]), _mm256_castsi256_si128(temp_epi8));
} else {
2019-07-15 13:49:22 +00:00
for (int i = x; i < (block_width); ++i) {
2019-07-15 13:49:22 +00:00
const kvz_pixel *c_data = &rec_data[y * stride + i];
2019-07-15 13:49:22 +00:00
kvz_pixel *new_data = &new_rec_data[y * new_stride + i];
kvz_pixel a = c_data[a_ofs.y * stride + a_ofs.x];
kvz_pixel c = c_data[0];
kvz_pixel b = c_data[b_ofs.y * stride + b_ofs.x];
2019-07-15 13:49:22 +00:00
int eo_cat = sao_calc_eo_cat(a, b, c);
2019-07-15 13:49:22 +00:00
new_data[0] = (kvz_pixel)CLIP(0, (1 << KVZ_BIT_DEPTH) - 1, c_data[0] + sao->offsets[eo_cat + offset_v]);
}
}
}
}
}
}
static INLINE __m256i srli_epi8(__m256i v, const uint32_t shift)
{
const uint8_t hibit_mask = 0xff >> shift;
const __m256i hibit_mask_256 = _mm256_set1_epi8(hibit_mask);
2019-05-31 13:39:22 +00:00
__m256i v_shifted = _mm256_srli_epi32(v, shift);
__m256i v_masked = _mm256_and_si256 (v_shifted, hibit_mask_256);
2019-03-04 14:55:39 +00:00
return v_masked;
}
2019-03-04 14:55:39 +00:00
static INLINE void cvt_epu8_epi16(const __m256i v, __m256i *res_lo, __m256i *res_hi)
{
const __m256i zero = _mm256_setzero_si256();
*res_lo = _mm256_unpacklo_epi8(v, zero);
*res_hi = _mm256_unpackhi_epi8(v, zero);
}
2019-03-04 14:55:39 +00:00
static INLINE void cvt_epi8_epi16(const __m256i v, __m256i *res_lo, __m256i *res_hi)
{
const __m256i zero = _mm256_setzero_si256();
__m256i signs = _mm256_cmpgt_epi8 (zero, v);
*res_lo = _mm256_unpacklo_epi8(v, signs);
*res_hi = _mm256_unpackhi_epi8(v, signs);
}
2019-05-31 13:39:22 +00:00
static int32_t sao_band_ddistortion_avx2(const encoder_state_t *state,
const uint8_t *orig_data,
const uint8_t *rec_data,
int32_t block_width,
int32_t block_height,
int32_t band_pos,
const int32_t sao_bands[4])
{
const uint32_t bitdepth = 8;
const uint32_t shift = bitdepth - 5;
2019-05-31 13:39:22 +00:00
// Clamp band_pos to 32 from above. It'll be subtracted from the shifted
// rec_data values, which in 8-bit depth will always be clamped to [0, 31],
// so if it ever exceeds 32, all the band values will be negative and
// ignored. Ditto for less than -4.
__m128i bp_128 = _mm_cvtsi32_si128 (band_pos);
__m128i hilimit = _mm_cvtsi32_si128 (32);
__m128i lolimit = _mm_cvtsi32_si128 (-4);
bp_128 = _mm_min_epi8 (bp_128, hilimit);
bp_128 = _mm_max_epi8 (bp_128, lolimit);
__m256i bp_256 = _mm256_broadcastb_epi8(bp_128);
// LSBs of each SAO band dword, the band values must fit in 8 bits anyway
// (this will be checked later)
const __m128i sb_shufmask = _mm_set1_epi32(0x0c080400);
__m128i sbs_32 = _mm_loadu_si128((const __m128i *)sao_bands);
__m128i sbs_8 = _mm_shuffle_epi8 (sbs_32, sb_shufmask);
__m256i sb_256 = _mm256_broadcastsi128_si256 (sbs_8);
// Compare most significant 25 bits of SAO bands to the sign bit to assert
// that the band is between -128 and 127 (only comparing 24 would fail to
// detect values of 128...255)
__m128i sb_ms25b = _mm_srai_epi32 (sbs_32, 7);
__m128i sb_signs = _mm_srai_epi32 (sbs_32, 31);
__m128i sbs_ok_v = _mm_cmpeq_epi32 (sb_ms25b, sb_signs);
uint16_t sbs_ok = _mm_movemask_epi8 (sbs_ok_v);
// These should trigger like, never, at least the later condition of block
// not being a multiple of 32 wide. Rather safe than sorry though, huge SAO
// bands are more tricky of these two because the algorithm needs a complete
// reimplementation to work on 16-bit values.
if (sbs_ok != 0xffff)
goto use_generic;
// If VVC or something will start using SAO on blocks with width a multiple
// of 16, feel free to implement a XMM variant of this algorithm
if ((block_width & 31) != 0)
goto use_generic;
const __m256i zero = _mm256_setzero_si256();
const __m256i threes = _mm256_set1_epi8 (3);
const __m256i negate_hiword = _mm256_set1_epi32(0xffff0001);
__m256i sum = _mm256_setzero_si256();
for (uint32_t y = 0; y < block_height; y++) {
for (uint32_t x = 0; x < block_width; x += 32) {
const int32_t curr_pos = y * block_width + x;
__m256i rd = _mm256_loadu_si256((const __m256i *)( rec_data + curr_pos));
__m256i orig = _mm256_loadu_si256((const __m256i *)(orig_data + curr_pos));
__m256i orig_lo, orig_hi, rd_lo, rd_hi;
cvt_epu8_epi16(orig, &orig_lo, &orig_hi);
cvt_epu8_epi16(rd, &rd_lo, &rd_hi);
// The shift will clamp band to 0...31; band_pos on the other
// hand is always between 0...32, so band will be -1...31. Anything
// below zero is ignored, so we can clamp band_pos to 32.
__m256i rd_divd = srli_epi8 (rd, shift);
__m256i band = _mm256_sub_epi8 (rd_divd, bp_256);
// Force all <0 or >3 bands to 0xff, which will zero the shuffle result
__m256i band_lt_0 = _mm256_cmpgt_epi8 (zero, band);
__m256i band_gt_3 = _mm256_cmpgt_epi8 (band, threes);
__m256i band_inv = _mm256_or_si256 (band_lt_0, band_gt_3);
band = _mm256_or_si256 (band, band_inv);
__m256i offsets = _mm256_shuffle_epi8 (sb_256, band);
__m256i offsets_lo, offsets_hi;
cvt_epi8_epi16(offsets, &offsets_lo, &offsets_hi);
__m256i offsets_0_lo = _mm256_cmpeq_epi16 (offsets_lo, zero);
__m256i offsets_0_hi = _mm256_cmpeq_epi16 (offsets_hi, zero);
__m256i diff_lo = _mm256_sub_epi16 (orig_lo, rd_lo);
__m256i diff_hi = _mm256_sub_epi16 (orig_hi, rd_hi);
__m256i delta_lo = _mm256_sub_epi16 (diff_lo, offsets_lo);
__m256i delta_hi = _mm256_sub_epi16 (diff_hi, offsets_hi);
diff_lo = _mm256_andnot_si256 (offsets_0_lo, diff_lo);
diff_hi = _mm256_andnot_si256 (offsets_0_hi, diff_hi);
delta_lo = _mm256_andnot_si256 (offsets_0_lo, delta_lo);
delta_hi = _mm256_andnot_si256 (offsets_0_hi, delta_hi);
__m256i dd0_lo = _mm256_unpacklo_epi16(delta_lo, diff_lo);
__m256i dd0_hi = _mm256_unpackhi_epi16(delta_lo, diff_lo);
__m256i dd1_lo = _mm256_unpacklo_epi16(delta_hi, diff_hi);
__m256i dd1_hi = _mm256_unpackhi_epi16(delta_hi, diff_hi);
__m256i dd0_lo_n = _mm256_sign_epi16 (dd0_lo, negate_hiword);
__m256i dd0_hi_n = _mm256_sign_epi16 (dd0_hi, negate_hiword);
__m256i dd1_lo_n = _mm256_sign_epi16 (dd1_lo, negate_hiword);
__m256i dd1_hi_n = _mm256_sign_epi16 (dd1_hi, negate_hiword);
2019-05-31 13:39:22 +00:00
__m256i sum0_lo = _mm256_madd_epi16 (dd0_lo, dd0_lo_n);
__m256i sum0_hi = _mm256_madd_epi16 (dd0_hi, dd0_hi_n);
__m256i sum1_lo = _mm256_madd_epi16 (dd1_lo, dd1_lo_n);
__m256i sum1_hi = _mm256_madd_epi16 (dd1_hi, dd1_hi_n);
2019-03-04 14:55:39 +00:00
__m256i sum0 = _mm256_add_epi32 (sum0_lo, sum0_hi);
__m256i sum1 = _mm256_add_epi32 (sum1_lo, sum1_hi);
__m256i curr_sum = _mm256_add_epi32 (sum0, sum1);
2019-03-04 14:55:39 +00:00
sum = _mm256_add_epi32 (sum, curr_sum);
2019-07-15 13:49:22 +00:00
}
2019-03-04 14:55:39 +00:00
}
// Horizontal sum of 8x32 YMM, nothing special here
__m256i sum2 = _mm256_permute4x64_epi64(sum, _MM_SHUFFLE(1, 0, 3, 2));
__m256i sum3 = _mm256_add_epi32 (sum, sum2);
__m256i sum4 = _mm256_shuffle_epi32 (sum3, _MM_SHUFFLE(1, 0, 3, 2));
__m256i sum5 = _mm256_add_epi32 (sum3, sum4);
__m256i sum6 = _mm256_shuffle_epi32 (sum5, _MM_SHUFFLE(2, 3, 0, 1));
__m256i sum7 = _mm256_add_epi32 (sum5, sum6);
__m128i sum8 = _mm256_castsi256_si128 (sum7);
int32_t sum9 = _mm_cvtsi128_si32 (sum8);
return sum9;
use_generic:
return sao_band_ddistortion_generic(state, orig_data, rec_data, block_width,
block_height, band_pos, sao_bands);
2019-03-04 14:55:39 +00:00
}
#endif //COMPILE_INTEL_AVX2
int kvz_strategy_register_sao_avx2(void* opaque, uint8_t bitdepth)
{
bool success = true;
#if COMPILE_INTEL_AVX2
if (bitdepth == 8) {
2019-05-31 13:39:22 +00:00
//success &= kvz_strategyselector_register(opaque, "sao_edge_ddistortion", "avx2", 40, &sao_edge_ddistortion_avx2);
2017-07-11 07:02:01 +00:00
success &= kvz_strategyselector_register(opaque, "calc_sao_edge_dir", "avx2", 40, &calc_sao_edge_dir_avx2);
success &= kvz_strategyselector_register(opaque, "sao_reconstruct_color", "avx2", 40, &sao_reconstruct_color_avx2);
success &= kvz_strategyselector_register(opaque, "sao_band_ddistortion", "avx2", 40, &sao_band_ddistortion_avx2);
}
#endif //COMPILE_INTEL_AVX2
return success;
}