What is the avx2 instruction to store 8 integers?

前端 未结 1 989
闹比i
闹比i 2021-01-27 13:40

I want to store the 8 integers from a __m256i variable to an array of 8 x 32 bit ints. I thought the instruction for that would be _mm256_store_e

相关标签:
1条回答
  • 2021-01-27 14:24

    Have a look at the Intel Intrinsics Guide. Depending on whether your destination is aligned, you need _mm256_store_si256 or _mm256_storeu_si256.

    0 讨论(0)
提交回复
热议问题