_mm256_insert_epi32
Classification
Header File
Synopsis
_mm256_insert_epi32(__m256i a, __int32 i, const int index);
Description
Copy "a" to "dst", and insert the 32-bit integer "i" into "dst" at the location specified by "index".
Operation
dst[255:0] := a[255:0]
sel := index[2:0]*32
dst[sel+31:sel] := i[31:0]