_mm_permutex2var_ph
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512_FP16
Header File
immintrin.h
Synopsis
 _mm_permutex2var_ph(__m128h a, __m128i idx, __m128h b);
Description
Shuffle half-precision (16-bit) floating-point elements in "a" and "b" using the corresponding selector and index in "idx", and store the results in "dst".
Operation
FOR j := 0 to 7
	i := j*16
	off := idx[i+2:i]
	dst.fp16[j] := idx[i+3] ? b.fp16[off] : a.fp16[off]
ENDFOR
dst[MAX:128] := 0