pub unsafe fn _mm256_mask_compressstoreu_epi16(
    base_addr: *mut u8,
    k: __mmask16,
    a: __m256i
)
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512vbmi2,avx512vl and x86-64 only.
Expand description

将 a 中的活动 16 位整数 (其各自的位在 writemask k 中设置的那些) 连续存储到 base_addr 处的未对齐内存。

Intel’s documentation