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

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

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

使用 k 中的写掩码 - 如果未设置相应的掩码位,则结果中的元素为零。 否则,将计算结果写入结果中。

Intel’s documentation