Function core::arch::x86::_mm_gf2p8affine_epi64_epi8[][src]

pub unsafe fn _mm_gf2p8affine_epi64_epi8<const B: i32>(
    x: __m128i,
    a: __m128i
) -> __m128i
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 and target feature avx512gfni,avx512bw,avx512vl only.
Expand description

对 x 中的包装字节执行仿射变换。 也就是说,对于每个包装的字节,在 Galois 字段 2^8 上计算 a * x + b,其中 a 是 8x8 位矩阵,b 是恒定 8 位 immediate 数。

x 中每 8 字节的包在 a 中的相同位置与 64 位字配对。

Intel’s documentation