Visible to Intel only — GUID: GUID-07B189AA-E2A0-47DB-A3EF-D0B762B8A71C
Visible to Intel only — GUID: GUID-07B189AA-E2A0-47DB-A3EF-D0B762B8A71C
<span class='option'> _mm256_cvttps_epi32</span>
Converts packed float32 values to truncated extended 32-bit integer values. The corresponding Intel® AVX instruction is VCVTTPS2DQ.
extern __m256i _mm256_cvttps_epi32(__m256 m1); |
m1 |
float32 source vector |
Converts eight packed single-precision floating-point values (float32 values) in the source vector to eight packed signed doubleword integer (extended 32-bit integer) values in the destination.
When a conversion is inexact, a truncated (round towards zero) value is returned. If a converted result is larger than the maximum signed doubleword integer, the floating-point invalid exception is raised; if this exception is masked, the indefinite integer value (80000000H) is returned.
Result of the conversion operation.