问题
We have the intrinsic _mm_storeu_ps
to store __m128
into a float array. However, I don't see any equivalent for integers. I was expecting something like _mm_storeu_epi32
, but that doesn't exist. So, what is the way of storing a _m128i
into an int array?
回答1:
Its name is _mm_storeu_si128().
来源:https://stackoverflow.com/questions/43018299/what-is-the-method-of-storing-contents-of-m128i-into-an-int-array