What are these data types for? __m64, __m128, __m256 ?

link|improve this question

3  
It would help if you posted which programming language this was. – Lasse V. Karlsen Jun 4 '10 at 13:30
feedback

3 Answers

up vote 3 down vote accepted

A quick google-search gives me:

Unfortunately I can't readily find what __m256 is but I suspect it is along the same lines.

Basically, data structures for MMX and similar technologies.

link|improve this answer
2  
__m256 is new extended data type in latest SIMD upgrade from intel – Andrey Jun 4 '10 at 13:34
Of course, I searched for __m256 first and found the same stuff that you did. – David Jun 4 '10 at 13:38
1  
Which, I should add, as you saw was not useful. [sigh] – David Jun 4 '10 at 13:45
feedback

MMX Technology Packed Arithmetic Intrinsics (C++).

link|improve this answer
Thanks Mike, that's what I was looking for. – David Jun 4 '10 at 13:40
Basically the answer is that they're enhanced datatypes intended for use in specialized processors, which have optimized instructions available for these types. – Mike Atlas Jun 4 '10 at 13:49
feedback

they are SSE instructions, including new AVX extension. http://www.serc.iisc.ernet.in/ComputingFacilities/systems/Dell_Doc/Intel_C++_Compiler/en_US/compiler_c/main_cls/intref_cls/common/intref_avx_details.htm and here

they store vectors - multiple values at the same time. you can do calculations on all values in a vector simultaneously with special instructions. Chech links

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.