_mm256_cvtneoph_ps
Classification
AVX_ALL, Convert, CPUID Test: AVX_NE_CONVERT
Header File
Instruction
VCVTNEOPH2PS ymm, m256
Synopsis
_mm256_cvtneoph_ps(const __m256h* __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 7
m := j*32
dst[m+31:m] := Convert_FP16_To_FP32(MEM[__A+m+31:__A+m+16])
ENDFOR
dst[MAX:256] := 0