_mm256_cvtepi32_ps
Classification
Header File
Instruction
VCVTDQ2PS ymm, ymm
Synopsis
_mm256_cvtepi32_ps(__m256i a);
Description
Convert packed signed 32-bit integers in "a" to packed single-precision (32-bit) floating-point elements, and store the results in "dst".
Operation
FOR j := 0 to 7
i := 32*j
dst[i+31:i] := Convert_Int32_To_FP32(a[i+31:i])
ENDFOR
dst[MAX:256] := 0