c – 如何编写可能优化为一个SSE指令的无符号加法代码?

前端之家收集整理的这篇文章主要介绍了c – 如何编写可能优化为一个SSE指令的无符号加法代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在C或C中,您如何编写无符号添加两个可能被GCC优化的数组的代码到一个128位SSE无符号加法指令?

解决方法

// N number of ints to be added
// a,b input array
// c sum array
// nReg number of required vector registers

const unsigned nReg = N*sizeof(uint32_t)/sizeof(__v4si);
__v4si a[nReg],b[nReg],c[nReg];
for (unsigned i=0; i<nReg; ++i)
    c[i] = _mm_add_epi32(a[i],b[i]);

// in c++ simply
for (unsigned i=0; i<nReg; ++i)
    c[i] = a[i] + b[i];

根据需要展开循环和预取元素.建议进行性能分析.用__v16qi,__ v8hi,__ v2di替换__v4si为8,16,64位整数.

原文链接:https://www.f2er.com/c/118756.html

猜你在找的C&C++相关文章