use core::arch::wasm32::*;
use crate::compat::*;
use crate::convolution::optimisations::Normalizer16;
use crate::pixels::U8;
use crate::{wasm32_utils, ImageView, ImageViewMut};
#[inline]
pub(crate) fn horiz_convolution(
src_view: &impl ImageView<Pixel = U8>,
dst_view: &mut impl ImageViewMut<Pixel = U8>,
offset: u32,
normalizer: &Normalizer16,
) {
let dst_height = dst_view.height();
let src_iter = src_view.iter_4_rows(offset, dst_height + offset);
let dst_iter = dst_view.iter_4_rows_mut();
for (src_rows, dst_rows) in src_iter.zip(dst_iter) {
unsafe {
horiz_convolution_four_rows(src_rows, dst_rows, normalizer);
}
}
let yy = dst_height - dst_height % 4;
let src_rows = src_view.iter_rows(yy + offset);
let dst_rows = dst_view.iter_rows_mut(yy);
for (src_row, dst_row) in src_rows.zip(dst_rows) {
unsafe {
horiz_convolution_one_row(src_row, dst_row, normalizer);
}
}
}
#[inline]
#[target_feature(enable = "simd128")]
unsafe fn horiz_convolution_four_rows(
src_rows: [&[U8]; 4],
dst_rows: [&mut [U8]; 4],
normalizer: &Normalizer16,
) {
const ZERO: v128 = i64x2(0, 0);
let initial = 1 << (normalizer.precision() - 1);
let mut buf = [0, 0, 0, 0, initial];
let coefficients_chunks = normalizer.chunks();
for (dst_x, coeffs_chunk) in coefficients_chunks.iter().enumerate() {
let coeffs = coeffs_chunk.values();
let mut x = coeffs_chunk.start as usize;
let mut result_i32x4 = [ZERO, ZERO, ZERO, ZERO];
let coeffs_by_8 = coeffs.chunks_exact(8);
let reminder8 = coeffs_by_8.remainder();
for k in coeffs_by_8 {
let coeffs_i16x8 = v128_load(k.as_ptr() as *const v128);
for i in 0..4 {
let pixels_u8x8 = wasm32_utils::loadl_i64(src_rows[i], x);
let pixels_i16x8 = u16x8_extend_low_u8x16(pixels_u8x8);
result_i32x4[i] =
i32x4_add(result_i32x4[i], i32x4_dot_i16x8(pixels_i16x8, coeffs_i16x8));
}
x += 8;
}
let mut coeffs_by_4 = reminder8.chunks_exact(4);
let reminder4 = coeffs_by_4.remainder();
if let Some(k) = coeffs_by_4.next() {
let coeffs_i16x4 = wasm32_utils::loadl_i64(k, 0);
for i in 0..4 {
let pixels_u8x4 = wasm32_utils::loadl_i32(src_rows[i], x);
let pixels_i16x4 = u16x8_extend_low_u8x16(pixels_u8x4);
result_i32x4[i] =
i32x4_add(result_i32x4[i], i32x4_dot_i16x8(pixels_i16x4, coeffs_i16x4));
}
x += 4;
}
let mut result_i32x4 = result_i32x4.map(|v| {
v128_store(buf.as_mut_ptr() as *mut v128, v);
buf.iter().sum()
});
for &coeff in reminder4 {
let coeff_i32 = coeff as i32;
for i in 0..4 {
result_i32x4[i] += src_rows[i].get_unchecked(x).0.to_owned() as i32 * coeff_i32;
}
x += 1;
}
let result_u8x4 = result_i32x4.map(|v| normalizer.clip(v));
for i in 0..4 {
dst_rows[i].get_unchecked_mut(dst_x).0 = result_u8x4[i];
}
}
}
#[inline]
#[target_feature(enable = "simd128")]
unsafe fn horiz_convolution_one_row(src_row: &[U8], dst_row: &mut [U8], normalizer: &Normalizer16) {
const ZERO: v128 = i64x2(0, 0);
let initial = 1 << (normalizer.precision() - 1);
let mut buf = [0, 0, 0, 0, initial];
let coefficients_chunks = normalizer.chunks();
for (dst_x, coeffs_chunk) in coefficients_chunks.iter().enumerate() {
let coeffs = coeffs_chunk.values();
let mut x = coeffs_chunk.start as usize;
let mut result_i32x4 = ZERO;
let coeffs_by_8 = coeffs.chunks_exact(8);
let reminder8 = coeffs_by_8.remainder();
for k in coeffs_by_8 {
let coeffs_i16x8 = v128_load(k.as_ptr() as *const v128);
let pixels_u8x8 = wasm32_utils::loadl_i64(src_row, x);
let pixels_i16x8 = u16x8_extend_low_u8x16(pixels_u8x8);
result_i32x4 = i32x4_add(result_i32x4, i32x4_dot_i16x8(pixels_i16x8, coeffs_i16x8));
x += 8;
}
let mut coeffs_by_4 = reminder8.chunks_exact(4);
let reminder4 = coeffs_by_4.remainder();
if let Some(k) = coeffs_by_4.next() {
let coeffs_i16x4 = wasm32_utils::loadl_i64(k, 0);
let pixels_u8x4 = wasm32_utils::loadl_i32(src_row, x);
let pixels_i16x4 = u16x8_extend_low_u8x16(pixels_u8x4);
result_i32x4 = i32x4_add(result_i32x4, i32x4_dot_i16x8(pixels_i16x4, coeffs_i16x4));
x += 4;
}
v128_store(buf.as_mut_ptr() as *mut v128, result_i32x4);
let mut result_i32 = buf.iter().sum();
for &coeff in reminder4 {
let coeff_i32 = coeff as i32;
result_i32 += src_row.get_unchecked(x).0 as i32 * coeff_i32;
x += 1;
}
dst_row.get_unchecked_mut(dst_x).0 = normalizer.clip(result_i32);
}
}