Multiplies two vectors with packed doubleword signed integer values. The corresponding Intel® AVX2 instruction is VPMULDQ.
extern __m256i _mm256_mul_epi32(__m256i s1, __m256i s2); |
s1 |
integer source vector used for the operation |
s2 |
integer source vector used for the operation |
Multiplies the value of packed signed doubleword integer in the first source vector, s1, by the value in the second source vector, s2, and stores the result in the destination vector.
When a quadword result is too large to be represented in 64 bits (overflow), the result is wrapped around and the low 64 bits are written to the destination element (that is, the carry is ignored).
Result of the multiplication operation.
Copyright © 1996-2011, Intel Corporation. All rights reserved.