What is the difference between _m256i and _m256d and _m256? and
What is the difference between _m128i and _m128d and _m128?
1
votes
2 Answers
3
votes
The
__m256data type is used to represent the contents of the extended SSE register - the YMM register, used by the IntelĀ® AVX intrinsics. The__m256data type can hold eight 32-bit floating-point values.The
__m256ddata type can hold four 64-bit double precision floating-point values.The
__m256idata type can hold thirty-two 8-bit, sixteen 16-bit, eight 32-bit, or four 64-bit integer values.