pub unsafe fn _mm512_dpwssds_epi32(
    src: __m512i,
    a: __m512i,
    b: __m512i
) -> __m512i
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512vnni and x86-64 only.
Expand description

将 a 中的 2 对相邻的有符号 16 位整数组与 b 中的相应 16 位整数相乘,产生 2 个中间有符号 32 位结果。使用符号饱和将这 2 个结果与 src 中相应的 32 位整数相加,并将包装的 32 位结果存储在 dst 中。

Intel’s documentation