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

pub unsafe fn _mm512_i32gather_pd<const SCALE: i32>(
    offsets: __m256i,
    slice: *const u8
) -> __m512d
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 and target feature avx512f only.
Expand description

使用 32 位索引从内存中收集双精度 (64-bit) 浮点元素。从 base_addr 开始的地址加载 64 位元素,并由 vindex 中的每个 32 位元素偏移 (每个索引均按比例因子进行缩放)。收集的元素将合并到 dst 中。小数位数应为 1、2、4 或 8。

Intel’s documentation