_mm_mask_store_ss
Classification
AVX-512, Store, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VMOVSS m32 {k}, xmm
Synopsis
 _mm_mask_store_ss(float* mem_addr, __mmask8 k, __m128 a);
Description
Store the lower single-precision (32-bit) floating-point element from "a" into memory using writemask "k". "mem_addr" must be aligned on a 16-byte boundary or a general-protection exception may be generated.
Operation
IF k[0]
	MEM[mem_addr+31:mem_addr] := a[31:0]
FI