Visible to Intel only — GUID: GUID-4C88B470-E860-4AA0-9372-56DDE0421FA5
Visible to Intel only — GUID: GUID-4C88B470-E860-4AA0-9372-56DDE0421FA5
<span class='option'>_mm256_srai_epi16/32</span>
Arithmetic shift of word/doubleword elements to right according to specified number. The corresponding Intel® AVX2 instruction is VPSRAW or VPSRAD.
extern __m256i _mm256_srai_epi16(__m256i s1, const int count); |
extern __m256i _mm256_srai_epi32(__m256i s1, const int count); |
s1 |
integer source vector used for the operation |
count |
8-bit immediate used for the operation |
Performs an arithmetic shift of 16-bit [word] or 32-bit [doubleword] elements within a 128-bit lane of source vector s1 to the right by the number of bits specified in count. The empty high-order bits are filled with the initial value of the sign bit. If the value specified by count is greater than 15 or 31, the whole destination vector is filled with the initial value of the sign bit. The count argument is an 8-bit immediate.
Result of the right-shift operation.