Permutes 128-bit single-precision floating point containing fields into a 256-bit destination vector. The corresponding Intel® AVX instruction is VPERM2F128.
extern __m256 _mm256_permute2f128_ps(__m256 m1, __m256 m2, int control); |
m1 |
a 256-bit float32 source vector |
m2 |
a 256-bit float32 source vector |
control |
an immediate byte that specifies two 2-bit control fields and two additional bits which specify zeroing behavior. |
Permutes 128-bit floating-point-containing fields from the first source vector, m1, and second source vector, m2, by using bits in the 8-bit control argument.
A 256-bit float32 vector with permuted values.
Copyright © 1996-2011, Intel Corporation. All rights reserved.