use crate::filter_weights::FilterWeights;
use std::arch::aarch64::*;
#[must_use]
#[inline]
#[target_feature(enable = "rdm")]
fn conv_horiz_rgba_1_u16(
start_x: usize,
src: &[u16],
w0: int32x4_t,
store: int32x4_t,
) -> int32x4_t {
unsafe {
const CN: usize = 3;
let src_ptr = src.get_unchecked((start_x * CN)..);
let vl0 = vreinterpret_u16_u32(vld1_lane_u32::<0>(
src_ptr.as_ptr() as *const _,
vdup_n_u32(0),
));
let rgba_pixel = vld1_lane_u16::<2>(src_ptr.get_unchecked(2..).as_ptr() as *const _, vl0);
let lo = vreinterpretq_s32_u32(vshll_n_u16::<6>(rgba_pixel));
vqrdmlahq_s32(store, lo, w0)
}
}
#[must_use]
#[inline]
#[target_feature(enable = "rdm")]
fn conv_horiz_rgba_2_u16(
start_x: usize,
src: &[u16],
w0: int32x4_t,
w1: int32x4_t,
store: int32x4_t,
) -> int32x4_t {
unsafe {
const CN: usize = 3;
let src_ptr = src.get_unchecked((start_x * CN)..);
let l1 = vld1_u16(src_ptr.as_ptr());
let l2 = vld1_lane_u32::<0>(
src_ptr.get_unchecked(4..).as_ptr() as *const _,
vdup_n_u32(0),
);
let hi = vext_u16::<3>(l1, vreinterpret_u16_u32(l2));
let acc = vqrdmlahq_s32(store, vreinterpretq_s32_u32(vshll_n_u16::<6>(l1)), w1);
vqrdmlahq_s32(acc, vreinterpretq_s32_u32(vshll_n_u16::<6>(hi)), w0)
}
}
#[must_use]
#[inline]
#[target_feature(enable = "rdm")]
fn conv_horiz_rgba_4_u16(
start_x: usize,
src: &[u16],
weights: int32x4_t,
store: int32x4_t,
) -> int32x4_t {
unsafe {
const CN: usize = 3;
let src_ptr = src.get_unchecked((start_x * CN)..);
let part0 = vld1q_u16(src_ptr.as_ptr());
let part1 = vld1_u16(src_ptr.get_unchecked(8..).as_ptr());
let second = vext_u16::<3>(vget_low_u16(part0), vget_high_u16(part0));
let third = vext_u16::<2>(vget_high_u16(part0), part1);
let fourth = vext_u16::<1>(part1, part1);
let acc = vqrdmlahq_laneq_s32::<3>(
store,
vreinterpretq_s32_u32(vshll_n_u16::<6>(fourth)),
weights,
);
let acc =
vqrdmlahq_laneq_s32::<2>(acc, vreinterpretq_s32_u32(vshll_n_u16::<6>(third)), weights);
let acc = vqrdmlahq_laneq_s32::<1>(
acc,
vreinterpretq_s32_u32(vshll_n_u16::<6>(second)),
weights,
);
vqrdmlahq_laneq_s32::<0>(
acc,
vreinterpretq_s32_u32(vshll_n_u16::<6>(vget_low_u16(part0))),
weights,
)
}
}
#[inline(always)]
fn set_pixel(ptr: &mut [u16], pixel: uint16x4_t) {
unsafe {
vst1_lane_u32::<0>(ptr.as_mut_ptr() as *mut _, vreinterpret_u32_u16(pixel));
vst1_lane_u16::<2>(ptr.get_unchecked_mut(2..).as_mut_ptr(), pixel);
}
}
pub(crate) fn convolve_horizontal_rgb_neon_rows_4_hb_u16(
src: &[u16],
src_stride: usize,
dst: &mut [u16],
dst_stride: usize,
filter_weights: &FilterWeights<i32>,
bit_depth: u32,
) {
unsafe {
convolve_horizontal_rgb_neon_rows_4_hb_impl(
src,
src_stride,
dst,
dst_stride,
filter_weights,
bit_depth,
)
}
}
#[target_feature(enable = "rdm")]
fn convolve_horizontal_rgb_neon_rows_4_hb_impl(
src: &[u16],
src_stride: usize,
dst: &mut [u16],
dst_stride: usize,
filter_weights: &FilterWeights<i32>,
bit_depth: u32,
) {
unsafe {
const CN: usize = 3;
let init = vdupq_n_s32(1 << 5);
let v_max_colors = vdup_n_u16(((1u32 << bit_depth) - 1) as u16);
let (row0_ref, rest) = dst.split_at_mut(dst_stride);
let (row1_ref, rest) = rest.split_at_mut(dst_stride);
let (row2_ref, row3_ref) = rest.split_at_mut(dst_stride);
let iter_row0 = row0_ref.as_chunks_mut::<CN>().0;
let iter_row1 = row1_ref.as_chunks_mut::<CN>().0;
let iter_row2 = row2_ref.as_chunks_mut::<CN>().0;
let iter_row3 = row3_ref.as_chunks_mut::<CN>().0;
for (((((chunk0, chunk1), chunk2), chunk3), &bounds), weights) in iter_row0
.iter_mut()
.zip(iter_row1.iter_mut())
.zip(iter_row2.iter_mut())
.zip(iter_row3.iter_mut())
.zip(filter_weights.bounds.iter())
.zip(
filter_weights
.weights
.chunks_exact(filter_weights.aligned_size),
)
{
let mut jx = 0usize;
let mut store_0 = init;
let mut store_1 = init;
let mut store_2 = init;
let mut store_3 = init;
let bounds_size = bounds.size;
let src0 = src;
let src1 = src0.get_unchecked(src_stride..);
let src2 = src1.get_unchecked(src_stride..);
let src3 = src2.get_unchecked(src_stride..);
while jx + 4 <= bounds_size {
let bounds_start = bounds.start + jx;
let w_ptr = weights.get_unchecked(jx..);
let weights = vld1q_s32(w_ptr.as_ptr());
store_0 = conv_horiz_rgba_4_u16(bounds_start, src0, weights, store_0);
store_1 = conv_horiz_rgba_4_u16(bounds_start, src1, weights, store_1);
store_2 = conv_horiz_rgba_4_u16(bounds_start, src2, weights, store_2);
store_3 = conv_horiz_rgba_4_u16(bounds_start, src3, weights, store_3);
jx += 4;
}
while jx + 2 <= bounds_size {
let w_ptr = weights.get_unchecked(jx..);
let bounds_start = bounds.start + jx;
let w0 = vld1q_dup_s32(w_ptr.as_ptr());
let w1 = vld1q_dup_s32(w_ptr.get_unchecked(1..).as_ptr());
store_0 = conv_horiz_rgba_2_u16(bounds_start, src0, w0, w1, store_0);
store_1 = conv_horiz_rgba_2_u16(bounds_start, src1, w0, w1, store_1);
store_2 = conv_horiz_rgba_2_u16(bounds_start, src2, w0, w1, store_2);
store_3 = conv_horiz_rgba_2_u16(bounds_start, src3, w0, w1, store_3);
jx += 2;
}
while jx < bounds_size {
let w_ptr = weights.get_unchecked(jx..);
let bounds_start = bounds.start + jx;
let weight0 = vld1q_dup_s32(w_ptr.as_ptr());
store_0 = conv_horiz_rgba_1_u16(bounds_start, src0, weight0, store_0);
store_1 = conv_horiz_rgba_1_u16(bounds_start, src1, weight0, store_1);
store_2 = conv_horiz_rgba_1_u16(bounds_start, src2, weight0, store_2);
store_3 = conv_horiz_rgba_1_u16(bounds_start, src3, weight0, store_3);
jx += 1;
}
let j0 = vqshrun_n_s32::<6>(store_0);
let j1 = vqshrun_n_s32::<6>(store_1);
let j2 = vqshrun_n_s32::<6>(store_2);
let j3 = vqshrun_n_s32::<6>(store_3);
let store_16_0 = vmin_u16(j0, v_max_colors);
let store_16_1 = vmin_u16(j1, v_max_colors);
let store_16_2 = vmin_u16(j2, v_max_colors);
let store_16_3 = vmin_u16(j3, v_max_colors);
set_pixel(chunk0, store_16_0);
set_pixel(chunk1, store_16_1);
set_pixel(chunk2, store_16_2);
set_pixel(chunk3, store_16_3);
}
}
}
pub(crate) fn convolve_horizontal_rgb_neon_u16_hb_row(
src: &[u16],
dst: &mut [u16],
filter_weights: &FilterWeights<i32>,
bit_depth: u32,
) {
unsafe {
convolve_horizontal_rgb_neon_u16_hb_impl(src, dst, filter_weights, bit_depth);
}
}
#[target_feature(enable = "rdm")]
fn convolve_horizontal_rgb_neon_u16_hb_impl(
src: &[u16],
dst: &mut [u16],
filter_weights: &FilterWeights<i32>,
bit_depth: u32,
) {
unsafe {
const CN: usize = 3;
let v_max_colors = vdup_n_u16(((1u32 << bit_depth) - 1) as u16);
for ((dst, bounds), weights) in dst
.as_chunks_mut::<CN>()
.0
.iter_mut()
.zip(filter_weights.bounds.iter())
.zip(
filter_weights
.weights
.chunks_exact(filter_weights.aligned_size),
)
{
let bounds_size = bounds.size;
let mut jx = 0usize;
let mut store = vdupq_n_s32(1 << 5);
while jx + 4 <= bounds_size {
let w_ptr = weights.get_unchecked(jx..);
let weights = vld1q_s32(w_ptr.as_ptr());
let bounds_start = bounds.start + jx;
store = conv_horiz_rgba_4_u16(bounds_start, src, weights, store);
jx += 4;
}
while jx + 2 <= bounds_size {
let w_ptr = weights.get_unchecked(jx..);
let bounds_start = bounds.start + jx;
let weight0 = vld1q_dup_s32(w_ptr.as_ptr());
let weight1 = vld1q_dup_s32(w_ptr.get_unchecked(1..).as_ptr());
store = conv_horiz_rgba_2_u16(bounds_start, src, weight0, weight1, store);
jx += 2;
}
while jx < bounds_size {
let w_ptr = weights.get_unchecked(jx..);
let weight0 = vld1q_dup_s32(w_ptr.as_ptr());
let bounds_start = bounds.start + jx;
store = conv_horiz_rgba_1_u16(bounds_start, src, weight0, store);
jx += 1;
}
let store_16_0 = vmin_u16(vqshrun_n_s32::<6>(store), v_max_colors);
set_pixel(dst, store_16_0);
}
}
}