What is the method of storing contents of _m128i into an int array?

狂风中的少年 提交于 2019-12-25 08:36:41

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!