Visible to Intel only — GUID: GUID-6B4A17D5-F6F1-4E57-B1A3-AC00405529B0
Visible to Intel only — GUID: GUID-6B4A17D5-F6F1-4E57-B1A3-AC00405529B0
<span class='option'> _mm256_castps128_ps256</span>
Typecasts 128-bit single-precision floating point values to 256-bit single-precision floating point values. No corresponding Intel® AVX instruction.
extern __m256 _mm256_castps128_ps256(__m128 a); |
a |
128-bit float32 source vector |
Performs a typecast operation from 128-bit single-precision floating point values to 256-bit single-precision floating point values.
The lower 128-bits of the 256-bit resulting vector contains the source vector values; the upper 128-bits of the resulting vector are undefined. This intrinsic does not introduce extra moves to the generated code.
A vector with 256-bit single-precision floating point values. The upper bits of the resulting vector are undefined.