use crate::avx512bw::avx512_utils::{
_mm512_deinterleave_epi16, _mm512_deinterleave_epi32, _mm512_expand_rgb_to_rgba,
_mm512_set4r_epi8, avx512_pack_u16, avx512_pack_u32,
};
use crate::internals::ProcessedOffset;
use crate::yuv_support::{CbCrForwardTransform, YuvChromaRange, YuvSourceChannels};
#[cfg(target_arch = "x86")]
use std::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;
pub(crate) fn avx512_rgba_to_yuv_dot_rgba420<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
unsafe {
if std::arch::is_x86_feature_detected!("avx512vnni") {
return avx512_rgba_to_yuv_dot_rgba_impl_dot420_def::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx,
start_ux, width,
);
}
avx512_rgba_to_yuv_dot_rgba_impl_ubs420_def::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx,
start_ux, width,
)
}
}
pub(crate) fn avx512_rgba_to_yuv_dot_rgba420_vbmi<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
unsafe {
if std::arch::is_x86_feature_detected!("avx512vnni") {
return avx512_rgba_to_yuv_dot_rgba_impl_dot420_vbmi::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx,
start_ux, width,
);
}
avx512_rgba_to_yuv_dot_rgba_impl_ubs420_vbmi::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx,
start_ux, width,
)
}
}
#[target_feature(enable = "avx512bw")]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_ubs420_def<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
avx512_rgba_to_yuv_dot_rgba_impl_ubs420_impl::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx, start_ux,
width,
)
}
#[target_feature(enable = "avx512bw", enable = "avx512vbmi")]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_ubs420_vbmi<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
avx512_rgba_to_yuv_dot_rgba_impl_ubs420_impl::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx, start_ux,
width,
)
}
#[inline(always)]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_ubs420_impl<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
let source_channels: YuvSourceChannels = ORIGIN_CHANNELS.into();
let channels = source_channels.get_channels_count();
let u_ptr = u_plane;
let v_ptr = v_plane;
const A_E: u32 = 7;
let y_bias = _mm512_set1_epi16(range.bias_y as i16 * (1 << A_E) + (1 << (A_E - 1)) - 1);
let uv_bias = _mm512_set1_epi16(range.bias_uv as i16 * (1 << A_E) + (1 << (A_E - 1)) - 1);
let is_rgbx =
source_channels == YuvSourceChannels::Rgba || source_channels == YuvSourceChannels::Rgb;
let is_rgb =
source_channels == YuvSourceChannels::Rgb || source_channels == YuvSourceChannels::Bgr;
let y_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.yr as i8,
transform.yg as i8,
transform.yb as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.yb as i8,
transform.yg as i8,
transform.yr as i8,
0,
)
};
let cb_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.cb_r as i8,
transform.cb_g as i8,
transform.cb_b as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.cb_b as i8,
transform.cb_g as i8,
transform.cb_r as i8,
0,
)
};
let cr_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.cr_r as i8,
transform.cr_g as i8,
transform.cr_b as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.cr_b as i8,
transform.cr_g as i8,
transform.cr_r as i8,
0,
)
};
let mut cx = start_cx;
let mut ux = start_ux;
while cx + 64 < width {
let src0 = rgba0.get_unchecked(cx * channels..).as_ptr();
let src1 = rgba1.get_unchecked(cx * channels..).as_ptr();
let (v0, v1, v2, v3);
let (v4, v5, v6, v7);
if !is_rgb {
v0 = _mm512_loadu_si512(src0 as *const _);
v1 = _mm512_loadu_si512(src0.add(64) as *const _);
v2 = _mm512_loadu_si512(src0.add(64 * 2) as *const _);
v3 = _mm512_loadu_si512(src0.add(64 * 3) as *const _);
v4 = _mm512_loadu_si512(src1 as *const _);
v5 = _mm512_loadu_si512(src1.add(64) as *const _);
v6 = _mm512_loadu_si512(src1.add(64 * 2) as *const _);
v7 = _mm512_loadu_si512(src1.add(64 * 3) as *const _);
} else {
let j0 = _mm512_loadu_si512(src0 as *const _);
let j1 = _mm512_loadu_si512(src0.add(64) as *const _);
let j2 = _mm512_loadu_si512(src0.add(64 * 2) as *const _);
let j3 = _mm512_loadu_si512(src1 as *const _);
let j4 = _mm512_loadu_si512(src1.add(64) as *const _);
let j5 = _mm512_loadu_si512(src1.add(64 * 2) as *const _);
(v0, v1, v2, v3) = _mm512_expand_rgb_to_rgba(j0, j1, j2);
(v4, v5, v6, v7) = _mm512_expand_rgb_to_rgba(j3, j4, j5);
}
let y0s = _mm512_maddubs_epi16(v0, y_weights);
let y1s = _mm512_maddubs_epi16(v1, y_weights);
let y2s = _mm512_maddubs_epi16(v2, y_weights);
let y3s = _mm512_maddubs_epi16(v3, y_weights);
let y4s = _mm512_maddubs_epi16(v4, y_weights);
let y5s = _mm512_maddubs_epi16(v5, y_weights);
let y6s = _mm512_maddubs_epi16(v6, y_weights);
let y7s = _mm512_maddubs_epi16(v7, y_weights);
let uh0 = _mm512_avg_epu8(v0, v4);
let uh1 = _mm512_avg_epu8(v1, v5);
let uh2 = _mm512_avg_epu8(v2, v6);
let uh3 = _mm512_avg_epu8(v3, v7);
let (y0p, y1p) = _mm512_deinterleave_epi16(y0s, y1s);
let (y2p, y3p) = _mm512_deinterleave_epi16(y2s, y3s);
let (y4p, y5p) = _mm512_deinterleave_epi16(y4s, y5s);
let (y6p, y7p) = _mm512_deinterleave_epi16(y6s, y7s);
let mut y0m = _mm512_add_epi16(y0p, y1p);
let mut y1m = _mm512_add_epi16(y2p, y3p);
let mut y2m = _mm512_add_epi16(y4p, y5p);
let mut y3m = _mm512_add_epi16(y6p, y7p);
let (v0_s, v1_s) = _mm512_deinterleave_epi32(uh0, uh1);
let (v2_s, v3_s) = _mm512_deinterleave_epi32(uh2, uh3);
y0m = _mm512_add_epi16(y0m, y_bias);
y1m = _mm512_add_epi16(y1m, y_bias);
y2m = _mm512_add_epi16(y2m, y_bias);
y3m = _mm512_add_epi16(y3m, y_bias);
y0m = _mm512_srai_epi16::<A_E>(y0m);
y1m = _mm512_srai_epi16::<A_E>(y1m);
y2m = _mm512_srai_epi16::<A_E>(y2m);
y3m = _mm512_srai_epi16::<A_E>(y3m);
let y_vl0 = avx512_pack_u16(y0m, y1m);
let y_vl1 = avx512_pack_u16(y2m, y3m);
_mm512_storeu_si512(
y_plane0.get_unchecked_mut(cx..).as_mut_ptr() as *mut _,
y_vl0,
);
_mm512_storeu_si512(
y_plane1.get_unchecked_mut(cx..).as_mut_ptr() as *mut _,
y_vl1,
);
let v0_f = _mm512_avg_epu8(v0_s, v1_s);
let v1_f = _mm512_avg_epu8(v2_s, v3_s);
let cb0 = _mm512_maddubs_epi16(v0_f, cb_weights);
let cb1 = _mm512_maddubs_epi16(v1_f, cb_weights);
let cr0 = _mm512_maddubs_epi16(v0_f, cr_weights);
let cr1 = _mm512_maddubs_epi16(v1_f, cr_weights);
let (cb0, cb1) = _mm512_deinterleave_epi16(cb0, cb1);
let (cr0, cr1) = _mm512_deinterleave_epi16(cr0, cr1);
let mut cb00 = _mm512_add_epi16(cb0, cb1);
let mut cr00 = _mm512_add_epi16(cr0, cr1);
cb00 = _mm512_add_epi16(cb00, uv_bias);
cr00 = _mm512_add_epi16(cr00, uv_bias);
cb00 = _mm512_srai_epi16::<A_E>(cb00);
cr00 = _mm512_srai_epi16::<A_E>(cr00);
let cb_vl = avx512_pack_u16(cb00, cb00);
let cr_vl = avx512_pack_u16(cr00, cr00);
_mm256_storeu_si256(
u_ptr.get_unchecked_mut(ux..).as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cb_vl),
);
_mm256_storeu_si256(
v_ptr.get_unchecked_mut(ux..).as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cr_vl),
);
ux += 32;
cx += 64;
}
if cx < width {
let diff = width - cx;
assert!(diff <= 64);
let mut src_buffer0: [u8; 64 * 4] = [0; 64 * 4];
let mut src_buffer1: [u8; 64 * 4] = [0; 64 * 4];
let mut y_buffer0: [u8; 64] = [0; 64];
let mut y_buffer1: [u8; 64] = [0; 64];
let mut u_buffer: [u8; 64] = [0; 64];
let mut v_buffer: [u8; 64] = [0; 64];
std::ptr::copy_nonoverlapping(
rgba0.get_unchecked(cx * channels..).as_ptr(),
src_buffer0.as_mut_ptr(),
diff * channels,
);
std::ptr::copy_nonoverlapping(
rgba1.get_unchecked(cx * channels..).as_ptr(),
src_buffer1.as_mut_ptr(),
diff * channels,
);
if diff % 2 != 0 {
let lst = (width - 1) * channels;
let last_items0 = rgba0.get_unchecked(lst..(lst + channels));
let last_items1 = rgba1.get_unchecked(lst..(lst + channels));
let dvb = diff * channels;
let dst0 = src_buffer0.get_unchecked_mut(dvb..(dvb + channels));
let dst1 = src_buffer1.get_unchecked_mut(dvb..(dvb + channels));
for (dst, src) in dst0.iter_mut().zip(last_items0) {
*dst = *src;
}
for (dst, src) in dst1.iter_mut().zip(last_items1) {
*dst = *src;
}
}
let (v0, v1, v2, v3);
let (v4, v5, v6, v7);
if !is_rgb {
v0 = _mm512_loadu_si512(src_buffer0.as_ptr() as *const _);
v1 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64) as *const _);
v2 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 2) as *const _);
v3 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 3) as *const _);
v4 = _mm512_loadu_si512(src_buffer1.as_ptr() as *const _);
v5 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64) as *const _);
v6 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 2) as *const _);
v7 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 3) as *const _);
} else {
let j0 = _mm512_loadu_si512(src_buffer0.as_ptr() as *const _);
let j1 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64) as *const _);
let j2 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 2) as *const _);
let j3 = _mm512_loadu_si512(src_buffer1.as_ptr() as *const _);
let j4 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64) as *const _);
let j5 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 2) as *const _);
(v0, v1, v2, v3) = _mm512_expand_rgb_to_rgba(j0, j1, j2);
(v4, v5, v6, v7) = _mm512_expand_rgb_to_rgba(j3, j4, j5);
}
let y0s = _mm512_maddubs_epi16(v0, y_weights);
let y1s = _mm512_maddubs_epi16(v1, y_weights);
let y2s = _mm512_maddubs_epi16(v2, y_weights);
let y3s = _mm512_maddubs_epi16(v3, y_weights);
let y4s = _mm512_maddubs_epi16(v4, y_weights);
let y5s = _mm512_maddubs_epi16(v5, y_weights);
let y6s = _mm512_maddubs_epi16(v6, y_weights);
let y7s = _mm512_maddubs_epi16(v7, y_weights);
let uh0 = _mm512_avg_epu8(v0, v4);
let uh1 = _mm512_avg_epu8(v1, v5);
let uh2 = _mm512_avg_epu8(v2, v6);
let uh3 = _mm512_avg_epu8(v3, v7);
let (y0p, y1p) = _mm512_deinterleave_epi16(y0s, y1s);
let (y2p, y3p) = _mm512_deinterleave_epi16(y2s, y3s);
let (y4p, y5p) = _mm512_deinterleave_epi16(y4s, y5s);
let (y6p, y7p) = _mm512_deinterleave_epi16(y6s, y7s);
let mut y0m = _mm512_add_epi16(y0p, y1p);
let mut y1m = _mm512_add_epi16(y2p, y3p);
let mut y2m = _mm512_add_epi16(y4p, y5p);
let mut y3m = _mm512_add_epi16(y6p, y7p);
let (v0_s, v1_s) = _mm512_deinterleave_epi32(uh0, uh1);
let (v2_s, v3_s) = _mm512_deinterleave_epi32(uh2, uh3);
y0m = _mm512_add_epi16(y0m, y_bias);
y1m = _mm512_add_epi16(y1m, y_bias);
y2m = _mm512_add_epi16(y2m, y_bias);
y3m = _mm512_add_epi16(y3m, y_bias);
y0m = _mm512_srai_epi16::<A_E>(y0m);
y1m = _mm512_srai_epi16::<A_E>(y1m);
y2m = _mm512_srai_epi16::<A_E>(y2m);
y3m = _mm512_srai_epi16::<A_E>(y3m);
let y_vl0 = avx512_pack_u16(y0m, y1m);
let y_vl1 = avx512_pack_u16(y2m, y3m);
_mm512_storeu_si512(y_buffer0.as_mut_ptr() as *mut _, y_vl0);
_mm512_storeu_si512(y_buffer1.as_mut_ptr() as *mut _, y_vl1);
let v0_f = _mm512_avg_epu8(v0_s, v1_s);
let v1_f = _mm512_avg_epu8(v2_s, v3_s);
let cb0 = _mm512_maddubs_epi16(v0_f, cb_weights);
let cb1 = _mm512_maddubs_epi16(v1_f, cb_weights);
let cr0 = _mm512_maddubs_epi16(v0_f, cr_weights);
let cr1 = _mm512_maddubs_epi16(v1_f, cr_weights);
let (cb0, cb1) = _mm512_deinterleave_epi16(cb0, cb1);
let (cr0, cr1) = _mm512_deinterleave_epi16(cr0, cr1);
let mut cb00 = _mm512_add_epi16(cb0, cb1);
let mut cr00 = _mm512_add_epi16(cr0, cr1);
cb00 = _mm512_add_epi16(cb00, uv_bias);
cr00 = _mm512_add_epi16(cr00, uv_bias);
cb00 = _mm512_srai_epi16::<A_E>(cb00);
cr00 = _mm512_srai_epi16::<A_E>(cr00);
let cb_vl = avx512_pack_u16(cb00, cb00);
let cr_vl = avx512_pack_u16(cr00, cr00);
_mm256_storeu_si256(
u_buffer.as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cb_vl),
);
_mm256_storeu_si256(
v_buffer.as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cr_vl),
);
std::ptr::copy_nonoverlapping(
y_buffer0.as_ptr(),
y_plane0.get_unchecked_mut(cx..).as_mut_ptr(),
diff,
);
std::ptr::copy_nonoverlapping(
y_buffer1.as_ptr(),
y_plane1.get_unchecked_mut(cx..).as_mut_ptr(),
diff,
);
cx += diff;
let hv = diff.div_ceil(2);
std::ptr::copy_nonoverlapping(
u_buffer.as_ptr(),
u_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
hv,
);
std::ptr::copy_nonoverlapping(
v_buffer.as_ptr(),
v_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
hv,
);
ux += hv;
}
ProcessedOffset { cx, ux }
}
#[target_feature(enable = "avx512bw", enable = "avx512vnni")]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_dot420_def<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
avx512_rgba_to_yuv_dot_rgba_impl_dot420_impl::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx, start_ux,
width,
)
}
#[target_feature(enable = "avx512bw", enable = "avx512vnni", enable = "avx512vbmi")]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_dot420_vbmi<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
avx512_rgba_to_yuv_dot_rgba_impl_dot420_impl::<ORIGIN_CHANNELS>(
transform, range, y_plane0, y_plane1, u_plane, v_plane, rgba0, rgba1, start_cx, start_ux,
width,
)
}
#[inline(always)]
unsafe fn avx512_rgba_to_yuv_dot_rgba_impl_dot420_impl<const ORIGIN_CHANNELS: u8>(
transform: &CbCrForwardTransform<i32>,
range: &YuvChromaRange,
y_plane0: &mut [u8],
y_plane1: &mut [u8],
u_plane: &mut [u8],
v_plane: &mut [u8],
rgba0: &[u8],
rgba1: &[u8],
start_cx: usize,
start_ux: usize,
width: usize,
) -> ProcessedOffset {
let source_channels: YuvSourceChannels = ORIGIN_CHANNELS.into();
let channels = source_channels.get_channels_count();
let u_ptr = u_plane;
let v_ptr = v_plane;
const A_E: u32 = 7;
let y_bias = _mm512_set1_epi32(range.bias_y as i32 * (1 << A_E) + (1 << (A_E - 1)) - 1);
let uv_bias = _mm512_set1_epi32(range.bias_uv as i32 * (1 << A_E) + (1 << (A_E - 1)) - 1);
let is_rgbx =
source_channels == YuvSourceChannels::Rgba || source_channels == YuvSourceChannels::Rgb;
let is_rgb =
source_channels == YuvSourceChannels::Rgb || source_channels == YuvSourceChannels::Bgr;
let y_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.yr as i8,
transform.yg as i8,
transform.yb as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.yb as i8,
transform.yg as i8,
transform.yr as i8,
0,
)
};
let cb_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.cb_r as i8,
transform.cb_g as i8,
transform.cb_b as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.cb_b as i8,
transform.cb_g as i8,
transform.cb_r as i8,
0,
)
};
let cr_weights = if is_rgbx {
_mm512_set4r_epi8(
transform.cr_r as i8,
transform.cr_g as i8,
transform.cr_b as i8,
0,
)
} else {
_mm512_set4r_epi8(
transform.cr_b as i8,
transform.cr_g as i8,
transform.cr_r as i8,
0,
)
};
let mut cx = start_cx;
let mut ux = start_ux;
while cx + 64 < width {
let src0 = rgba0.get_unchecked(cx * channels..).as_ptr();
let src1 = rgba1.get_unchecked(cx * channels..).as_ptr();
let (v0, v1, v2, v3);
let (v4, v5, v6, v7);
if !is_rgb {
v0 = _mm512_loadu_si512(src0 as *const _);
v1 = _mm512_loadu_si512(src0.add(64) as *const _);
v2 = _mm512_loadu_si512(src0.add(64 * 2) as *const _);
v3 = _mm512_loadu_si512(src0.add(64 * 3) as *const _);
v4 = _mm512_loadu_si512(src1 as *const _);
v5 = _mm512_loadu_si512(src1.add(64) as *const _);
v6 = _mm512_loadu_si512(src1.add(64 * 2) as *const _);
v7 = _mm512_loadu_si512(src1.add(64 * 3) as *const _);
} else {
let j0 = _mm512_loadu_si512(src0 as *const _);
let j1 = _mm512_loadu_si512(src0.add(64) as *const _);
let j2 = _mm512_loadu_si512(src0.add(64 * 2) as *const _);
let j3 = _mm512_loadu_si512(src1 as *const _);
let j4 = _mm512_loadu_si512(src1.add(64) as *const _);
let j5 = _mm512_loadu_si512(src1.add(64 * 2) as *const _);
(v0, v1, v2, v3) = _mm512_expand_rgb_to_rgba(j0, j1, j2);
(v4, v5, v6, v7) = _mm512_expand_rgb_to_rgba(j3, j4, j5);
}
let y0s = _mm512_dpbusd_epi32(y_bias, v0, y_weights);
let y1s = _mm512_dpbusd_epi32(y_bias, v1, y_weights);
let y2s = _mm512_dpbusd_epi32(y_bias, v2, y_weights);
let y3s = _mm512_dpbusd_epi32(y_bias, v3, y_weights);
let uh0 = _mm512_avg_epu8(v0, v4);
let uh1 = _mm512_avg_epu8(v1, v5);
let uh2 = _mm512_avg_epu8(v2, v6);
let uh3 = _mm512_avg_epu8(v3, v7);
let y4s = _mm512_dpbusd_epi32(y_bias, v4, y_weights);
let y5s = _mm512_dpbusd_epi32(y_bias, v5, y_weights);
let y6s = _mm512_dpbusd_epi32(y_bias, v6, y_weights);
let y7s = _mm512_dpbusd_epi32(y_bias, v7, y_weights);
let (v0_s, v1_s) = _mm512_deinterleave_epi32(uh0, uh1);
let (v2_s, v3_s) = _mm512_deinterleave_epi32(uh2, uh3);
let mut y0m = avx512_pack_u32(y0s, y1s);
let mut y1m = avx512_pack_u32(y2s, y3s);
let mut y2m = avx512_pack_u32(y4s, y5s);
let mut y3m = avx512_pack_u32(y6s, y7s);
y0m = _mm512_srai_epi16::<A_E>(y0m);
y1m = _mm512_srai_epi16::<A_E>(y1m);
y2m = _mm512_srai_epi16::<A_E>(y2m);
y3m = _mm512_srai_epi16::<A_E>(y3m);
let y_vl0 = avx512_pack_u16(y0m, y1m);
let y_vl1 = avx512_pack_u16(y2m, y3m);
_mm512_storeu_si512(
y_plane0.get_unchecked_mut(cx..).as_mut_ptr() as *mut _,
y_vl0,
);
_mm512_storeu_si512(
y_plane1.get_unchecked_mut(cx..).as_mut_ptr() as *mut _,
y_vl1,
);
let v0_f = _mm512_avg_epu8(v0_s, v1_s);
let v1_f = _mm512_avg_epu8(v2_s, v3_s);
let cb0 = _mm512_dpbusd_epi32(uv_bias, v0_f, cb_weights);
let cb1 = _mm512_dpbusd_epi32(uv_bias, v1_f, cb_weights);
let cr0 = _mm512_dpbusd_epi32(uv_bias, v0_f, cr_weights);
let cr1 = _mm512_dpbusd_epi32(uv_bias, v1_f, cr_weights);
let mut cb00 = avx512_pack_u32(cb0, cb1);
let mut cr00 = avx512_pack_u32(cr0, cr1);
cb00 = _mm512_srai_epi16::<A_E>(cb00);
cr00 = _mm512_srai_epi16::<A_E>(cr00);
let cb_vl = avx512_pack_u16(cb00, cb00);
let cr_vl = avx512_pack_u16(cr00, cr00);
_mm256_storeu_si256(
u_ptr.get_unchecked_mut(ux..).as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cb_vl),
);
_mm256_storeu_si256(
v_ptr.get_unchecked_mut(ux..).as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cr_vl),
);
ux += 32;
cx += 64;
}
if cx < width {
let diff = width - cx;
assert!(diff <= 64);
let mut src_buffer0: [u8; 64 * 4] = [0; 64 * 4];
let mut src_buffer1: [u8; 64 * 4] = [0; 64 * 4];
let mut y_buffer0: [u8; 64] = [0; 64];
let mut y_buffer1: [u8; 64] = [0; 64];
let mut u_buffer: [u8; 64] = [0; 64];
let mut v_buffer: [u8; 64] = [0; 64];
std::ptr::copy_nonoverlapping(
rgba0.get_unchecked(cx * channels..).as_ptr(),
src_buffer0.as_mut_ptr(),
diff * channels,
);
std::ptr::copy_nonoverlapping(
rgba1.get_unchecked(cx * channels..).as_ptr(),
src_buffer1.as_mut_ptr(),
diff * channels,
);
if diff % 2 != 0 {
let lst = (width - 1) * channels;
let last_items0 = rgba0.get_unchecked(lst..(lst + channels));
let last_items1 = rgba1.get_unchecked(lst..(lst + channels));
let dvb = diff * channels;
let dst0 = src_buffer0.get_unchecked_mut(dvb..(dvb + channels));
let dst1 = src_buffer1.get_unchecked_mut(dvb..(dvb + channels));
for (dst, src) in dst0.iter_mut().zip(last_items0) {
*dst = *src;
}
for (dst, src) in dst1.iter_mut().zip(last_items1) {
*dst = *src;
}
}
let (v0, v1, v2, v3);
let (v4, v5, v6, v7);
if !is_rgb {
v0 = _mm512_loadu_si512(src_buffer0.as_ptr() as *const _);
v1 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64) as *const _);
v2 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 2) as *const _);
v3 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 3) as *const _);
v4 = _mm512_loadu_si512(src_buffer1.as_ptr() as *const _);
v5 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64) as *const _);
v6 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 2) as *const _);
v7 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 3) as *const _);
} else {
let j0 = _mm512_loadu_si512(src_buffer0.as_ptr() as *const _);
let j1 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64) as *const _);
let j2 = _mm512_loadu_si512(src_buffer0.as_ptr().add(64 * 2) as *const _);
let j3 = _mm512_loadu_si512(src_buffer1.as_ptr() as *const _);
let j4 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64) as *const _);
let j5 = _mm512_loadu_si512(src_buffer1.as_ptr().add(64 * 2) as *const _);
(v0, v1, v2, v3) = _mm512_expand_rgb_to_rgba(j0, j1, j2);
(v4, v5, v6, v7) = _mm512_expand_rgb_to_rgba(j3, j4, j5);
}
let y0s = _mm512_dpbusd_epi32(y_bias, v0, y_weights);
let y1s = _mm512_dpbusd_epi32(y_bias, v1, y_weights);
let y2s = _mm512_dpbusd_epi32(y_bias, v2, y_weights);
let y3s = _mm512_dpbusd_epi32(y_bias, v3, y_weights);
let uh0 = _mm512_avg_epu8(v0, v4);
let uh1 = _mm512_avg_epu8(v1, v5);
let uh2 = _mm512_avg_epu8(v2, v6);
let uh3 = _mm512_avg_epu8(v3, v7);
let y4s = _mm512_dpbusd_epi32(y_bias, v4, y_weights);
let y5s = _mm512_dpbusd_epi32(y_bias, v5, y_weights);
let y6s = _mm512_dpbusd_epi32(y_bias, v6, y_weights);
let y7s = _mm512_dpbusd_epi32(y_bias, v7, y_weights);
let (v0_s, v1_s) = _mm512_deinterleave_epi32(uh0, uh1);
let (v2_s, v3_s) = _mm512_deinterleave_epi32(uh2, uh3);
let mut y0m = avx512_pack_u32(y0s, y1s);
let mut y1m = avx512_pack_u32(y2s, y3s);
let mut y2m = avx512_pack_u32(y4s, y5s);
let mut y3m = avx512_pack_u32(y6s, y7s);
y0m = _mm512_srai_epi16::<A_E>(y0m);
y1m = _mm512_srai_epi16::<A_E>(y1m);
y2m = _mm512_srai_epi16::<A_E>(y2m);
y3m = _mm512_srai_epi16::<A_E>(y3m);
let y_vl0 = avx512_pack_u16(y0m, y1m);
let y_vl1 = avx512_pack_u16(y2m, y3m);
_mm512_storeu_si512(y_buffer0.as_mut_ptr() as *mut _, y_vl0);
_mm512_storeu_si512(y_buffer1.as_mut_ptr() as *mut _, y_vl1);
let v0_f = _mm512_avg_epu8(v0_s, v1_s);
let v1_f = _mm512_avg_epu8(v2_s, v3_s);
let cb0 = _mm512_dpbusd_epi32(uv_bias, v0_f, cb_weights);
let cb1 = _mm512_dpbusd_epi32(uv_bias, v1_f, cb_weights);
let cr0 = _mm512_dpbusd_epi32(uv_bias, v0_f, cr_weights);
let cr1 = _mm512_dpbusd_epi32(uv_bias, v1_f, cr_weights);
let mut cb00 = avx512_pack_u32(cb0, cb1);
let mut cr00 = avx512_pack_u32(cr0, cr1);
cb00 = _mm512_srai_epi16::<A_E>(cb00);
cr00 = _mm512_srai_epi16::<A_E>(cr00);
let cb_vl = avx512_pack_u16(cb00, cb00);
let cr_vl = avx512_pack_u16(cr00, cr00);
_mm256_storeu_si256(
u_buffer.as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cb_vl),
);
_mm256_storeu_si256(
v_buffer.as_mut_ptr() as *mut _,
_mm512_castsi512_si256(cr_vl),
);
std::ptr::copy_nonoverlapping(
y_buffer0.as_ptr(),
y_plane0.get_unchecked_mut(cx..).as_mut_ptr(),
diff,
);
std::ptr::copy_nonoverlapping(
y_buffer1.as_ptr(),
y_plane1.get_unchecked_mut(cx..).as_mut_ptr(),
diff,
);
cx += diff;
let hv = diff.div_ceil(2);
std::ptr::copy_nonoverlapping(
u_buffer.as_ptr(),
u_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
hv,
);
std::ptr::copy_nonoverlapping(
v_buffer.as_ptr(),
v_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
hv,
);
ux += hv;
}
ProcessedOffset { cx, ux }
}