pub unsafe fn _mm512_i64gather_epi64(
    offsets: __m512i,
    slice: *const u8,
    const SCALE: i32
) -> __m512i
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512f and x86-64 only.
Expand description

使用 64 位索引从内存中收集 64 位整数。从 base_addr 开始的地址加载 64 位元素,并由 vindex 中的每个 64 位元素偏移 (每个索引都按比例因子进行缩放)。收集的元素将合并到 dst 中。scale 应该是 1, 2, 4 或者 8.

Intel’s documentation