如何将 __m128 反转为整数
Posted
技术标签:
【中文标题】如何将 __m128 反转为整数【英文标题】:how invert __m128 into ints 【发布时间】:2012-12-27 07:37:28 【问题描述】:float a[4] = 1,2,3,4, b[4] = 4,3,2,1;
uint32_t c[4];
int main()
__m128 pa = _mm_loadu_ps(a);
__m128 pb = _mm_loadu_ps(b);
__m128 pc = _mm_cmpgt_ps(pa, pb);
_mm_storeu_ps((float*)c, pc);
for (int i = 0;i < 4; ++i) printf("%u\n", c[i]);
return 0;
_mm_storeu_ps((float*)c, pc)
的正确指令是什么?
这里,c是一个整数数组……我觉得这种方式不好,有更好的吗?
【问题讨论】:
【参考方案1】:在SSE2中有两条指令可以将__m128
(float
向量)转换为__m128i
(int32_t
向量):_mm_cvtps_epi32
(带舍入)和_mm_cvttps_epi32
(带截断)。
__m128i vi = _mm_cvttps_epi32(pc);
_mm_storeu_si128((__m128i *)c, vi);
如果不能使用SSE2,则应将pc
存入float
数组后,将float
数组转换为int
数组。
float d[4];
_mm_storeu_ps(d, pc);
c[0] = (int)d[0]; c[1] = (int)d[1]; c[2] = (int)d[2]; c[3] = (int)d[3];
【讨论】:
以上是关于如何将 __m128 反转为整数的主要内容,如果未能解决你的问题,请参考以下文章