SIMD support...

Walter Bright newshound2 at digitalmars.com
Thu Jan 5 19:27:28 PST 2012


On 1/5/2012 7:07 PM, Manu wrote:
> The only thing the language needs to think about is a single typeless, 128bit,
> 16 byte aligned value.

Currently, you can do this on 64 bit Linux:

   union V128
   {
     void[16] v;
     real dummy;
   }

as reals are aligned on 16 byte boundaries. I wonder how far that can be pushed.


More information about the Digitalmars-d mailing list