pub unsafe fn _mm256_gf2p8affine_epi64_epi8(
    x: __m256i,
    a: __m256i,
    const B: i32
) -> __m256i
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature gfni,avx and x86-64 only.
Expand description

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

x 中的每组 8 个字节与中相同位置的 64 位字配对 a.

Intel’s documentation