_mm_cvtneoph_ps
Classification
AVX_ALL, Convert, CPUID Test: AVX_NE_CONVERT
Header File
immintrin.h
Instruction
VCVTNEOPH2PS xmm, m128
Synopsis
 _mm_cvtneoph_ps(const __m128h* __A);
Description
Convert packed half-precision (16-bit) floating-point odd-indexed elements stored at memory locations starting at location "__A" to packed single-precision (32-bit) floating-point elements, and store the results in "dst".
Operation
FOR j := 0 to 3
	m := j*32
	dst[m+31:m] := Convert_FP16_To_FP32(MEM[__A+m+31:__A+m+16])
ENDFOR
dst[MAX:128] := 0