Using AVX intrinsics instead of SSE does not improve speed — why?

前端 未结 4 825
借酒劲吻你
借酒劲吻你 2021-01-30 03:59

I\'ve been using Intel\'s SSE intrinsics for quite some time with good performance gains. Hence, I expected the AVX intrinsics to further speed-up my programs. This, unfortunate

4条回答
  •  囚心锁ツ
    2021-01-30 04:48

    Depending on your processor hardware, the AVX instructions may be emulated in the hardware as SSE instructions. You'd need to look up your processor's part number to get exact specs on it, but this is one of the main differences between low-end and high-end intel processors, the number of specialize execution units vs. hardware emulation.

提交回复
热议问题