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

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

使用 64 位索引将单精度 (32-bit) 浮点元素从 a 分散到内存中。32 位元素存储在从 base_addr 开始的地址处,并由 vindex 中的每个 64 位元素偏移 (每个索引均按比例因子进行缩放),且受掩码 k 限制 (未设置相应的掩码位时不存储元素)。小数位数应为 1、2、4 或 8。

Intel’s documentation