use std::arch::aarch64::*;
use crate::filter_weights::FilterWeights;
use crate::neon::utils::prefer_vfmaq_laneq_f32;
use crate::neon::utils::{prefer_vfmaq_f32, prefer_vfmaq_lane_f32};
macro_rules! write_rgb_f32 {
($store: expr, $dest_ptr: expr) => {{
vst1_f32($dest_ptr, vget_low_f32($store));
vst1q_lane_f32::<2>($dest_ptr.add(2), $store);
}};
}
#[inline]
#[target_feature(enable = "neon")]
fn conv_horiz_4_rgb_f32(
start_x: usize,
src: &[f32],
weights: float32x4_t,
store: float32x4_t,
) -> float32x4_t {
const CN: usize = 3;
let src_ptr = unsafe { src.get_unchecked(start_x * CN..) };
let rgb_pixel_0 = unsafe { vld1q_f32(src_ptr.as_ptr()) };
let rgb_pixel_1 = unsafe { vld1q_f32(src_ptr.get_unchecked(4)) };
let rgb_pixel_2 = unsafe { vld1q_f32(src_ptr.get_unchecked(8)) };
let acc = prefer_vfmaq_laneq_f32::<0>(store, rgb_pixel_0, weights);
let acc = prefer_vfmaq_laneq_f32::<1>(acc, vextq_f32::<3>(rgb_pixel_0, rgb_pixel_1), weights);
let acc = prefer_vfmaq_laneq_f32::<2>(acc, vextq_f32::<2>(rgb_pixel_1, rgb_pixel_2), weights);
prefer_vfmaq_laneq_f32::<3>(acc, vextq_f32::<1>(rgb_pixel_2, rgb_pixel_2), weights)
}
#[inline]
#[target_feature(enable = "neon")]
fn conv_horiz_2_rgb_f32(
start_x: usize,
src: &[f32],
set: float32x2_t,
store: float32x4_t,
) -> float32x4_t {
const CN: usize = 3;
let src_ptr = unsafe { src.get_unchecked(start_x * CN..) };
let rgb_pixel_0 = unsafe { vld1q_f32(src_ptr.as_ptr()) };
let rgb_pixel_1 = unsafe { vld1q_f32(src_ptr.get_unchecked(2)) };
let acc = prefer_vfmaq_lane_f32::<0>(store, rgb_pixel_0, set);
prefer_vfmaq_lane_f32::<1>(acc, vextq_f32::<1>(rgb_pixel_1, rgb_pixel_1), set)
}
#[inline]
#[target_feature(enable = "neon")]
fn conv_horiz_1_rgb_f32(
start_x: usize,
src: &[f32],
weight: float32x4_t,
store: float32x4_t,
) -> float32x4_t {
const CN: usize = 3;
let src_ptr = unsafe { src.get_unchecked(start_x * CN..) };
let mut rgb_pixel = vreinterpretq_f32_f64(unsafe {
vld1q_lane_f64::<0>(src_ptr.as_ptr().cast(), vdupq_n_f64(0.))
});
rgb_pixel = unsafe { vld1q_lane_f32::<2>(src_ptr.get_unchecked(2), rgb_pixel) };
prefer_vfmaq_f32(store, rgb_pixel, weight)
}
pub(crate) fn convolve_horizontal_rgb_neon_rows_4_f32(
src: &[f32],
src_stride: usize,
dst: &mut [f32],
dst_stride: usize,
filter_weights: &FilterWeights<f32>,
_: u32,
) {
unsafe {
const CN: usize = 3;
let mut filter_offset = 0usize;
let zeros = vdupq_n_f32(0.);
let weights_ptr = filter_weights.weights.as_ptr();
let dst_width = filter_weights.bounds.len();
for x in 0..dst_width {
let bounds = filter_weights.bounds.get_unchecked(x);
let mut jx = 0usize;
let mut store_0 = zeros;
let mut store_1 = zeros;
let mut store_2 = zeros;
let mut store_3 = zeros;
while jx + 4 <= bounds.size {
let bounds_start = bounds.start + jx;
let ptr = weights_ptr.add(jx + filter_offset);
let read_weights = vld1q_f32(ptr);
store_0 = conv_horiz_4_rgb_f32(bounds_start, src, read_weights, store_0);
let s_ptr1 = src.get_unchecked(src_stride..);
store_1 = conv_horiz_4_rgb_f32(bounds_start, s_ptr1, read_weights, store_1);
let s_ptr2 = src.get_unchecked(src_stride * 2..);
store_2 = conv_horiz_4_rgb_f32(bounds_start, s_ptr2, read_weights, store_2);
let s_ptr = src.get_unchecked(src_stride * 3..);
store_3 = conv_horiz_4_rgb_f32(bounds_start, s_ptr, read_weights, store_3);
jx += 4;
}
while jx + 2 <= bounds.size {
let bounds_start = bounds.start + jx;
let ptr = weights_ptr.add(jx + filter_offset);
let read_weights = vld1_f32(ptr);
store_0 = conv_horiz_2_rgb_f32(bounds_start, src, read_weights, store_0);
let s_ptr_1 = src.get_unchecked(src_stride..);
store_1 = conv_horiz_2_rgb_f32(bounds_start, s_ptr_1, read_weights, store_1);
let s_ptr2 = src.get_unchecked(src_stride * 2..);
store_2 = conv_horiz_2_rgb_f32(bounds_start, s_ptr2, read_weights, store_2);
let s_ptr3 = src.get_unchecked(src_stride * 3..);
store_3 = conv_horiz_2_rgb_f32(bounds_start, s_ptr3, read_weights, store_3);
jx += 2;
}
while jx < bounds.size {
let ptr = weights_ptr.add(jx + filter_offset);
let bounds_start = bounds.start + jx;
let weight0 = vld1q_dup_f32(ptr);
store_0 = conv_horiz_1_rgb_f32(bounds_start, src, weight0, store_0);
let s_ptr_1 = src.get_unchecked(src_stride..);
store_1 = conv_horiz_1_rgb_f32(bounds_start, s_ptr_1, weight0, store_1);
let s_ptr_2 = src.get_unchecked(src_stride * 2..);
store_2 = conv_horiz_1_rgb_f32(bounds_start, s_ptr_2, weight0, store_2);
let s_ptr_3 = src.get_unchecked(src_stride * 3..);
store_3 = conv_horiz_1_rgb_f32(bounds_start, s_ptr_3, weight0, store_3);
jx += 1;
}
let px = x * CN;
let dest_ptr = dst.get_unchecked_mut(px..).as_mut_ptr();
write_rgb_f32!(store_0, dest_ptr);
let dest_ptr_1 = dst.get_unchecked_mut(px + dst_stride..).as_mut_ptr();
write_rgb_f32!(store_1, dest_ptr_1);
let dest_ptr_2 = dst.get_unchecked_mut(px + dst_stride * 2..).as_mut_ptr();
write_rgb_f32!(store_2, dest_ptr_2);
let dest_ptr_3 = dst.get_unchecked_mut(px + dst_stride * 3..).as_mut_ptr();
write_rgb_f32!(store_3, dest_ptr_3);
filter_offset += filter_weights.aligned_size;
}
}
}
pub(crate) fn convolve_horizontal_rgb_neon_row_one_f32(
src: &[f32],
dst: &mut [f32],
filter_weights: &FilterWeights<f32>,
_: u32,
) {
unsafe {
const CN: usize = 3;
let weights_ptr = filter_weights.weights.as_ptr();
let mut filter_offset = 0usize;
let dst_width = filter_weights.bounds.len();
for x in 0..dst_width {
let bounds = filter_weights.bounds.get_unchecked(x);
let mut jx = 0usize;
let mut store = vdupq_n_f32(0f32);
while jx + 4 <= bounds.size {
let bounds_start = bounds.start + jx;
let ptr = weights_ptr.add(jx + filter_offset);
let read_weights = vld1q_f32(ptr);
store = conv_horiz_4_rgb_f32(bounds_start, src, read_weights, store);
jx += 4;
}
while jx + 2 <= bounds.size {
let bounds_start = bounds.start + jx;
let ptr = weights_ptr.add(jx + filter_offset);
let read_weights = vld1_f32(ptr);
store = conv_horiz_2_rgb_f32(bounds_start, src, read_weights, store);
jx += 2;
}
while jx < bounds.size {
let ptr = weights_ptr.add(jx + filter_offset);
let weight0 = vld1q_dup_f32(ptr);
let bounds_start = bounds.start + jx;
store = conv_horiz_1_rgb_f32(bounds_start, src, weight0, store);
jx += 1;
}
let px = x * CN;
let dest_ptr = dst.get_unchecked_mut(px..).as_mut_ptr();
write_rgb_f32!(store, dest_ptr);
filter_offset += filter_weights.aligned_size;
}
}
}