将 _m128i 的内容存储到 int 数组中的方法是什么?

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

我们有内在的 _mm_storeu_ps 来将 __m128 存储到浮点数组中。但是,我没有看到整数的任何等价物。我期待 _mm_storeu_epi32 之类的东西,但那不存在。那么,将一个_m128i存入一个int数组的方法是什么?

它的名字是_mm_storeu_si128()