www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 16550] New: Generic SIMD shuffle for Mir

https://issues.dlang.org/show_bug.cgi?id=16550

          Issue ID: 16550
           Summary: Generic SIMD shuffle for Mir
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: ilyayaroshenko gmail.com

Vec1
re0 im0 re1 im1 re2 im2 re3 im3 // __vector(float[8])

Vec2
re4 im4 re5 im5 re6 im6 re7 im7 // __vector(float[8])

< unpack ------ pack >

VecReal
re0 re1 re2 re3 re4 re5 re6 re7 // __vector(float[8])

VecIm
im0 im1 im2 im3 im4 im5 im6 im7 // __vector(float[8])

--
Sep 27 2016