The only sched models that for cpu's that support avx2
but not avx512 are: haswell, broadwell, skylake, zen1-3
For load we have:
https://godbolt.org/z/bhscej4WM - for intels Block RThroughput: =13.0; for ryzens, Block RThroughput: <=7.0
So pick cost of 13.
For store we have:
https://godbolt.org/z/Yf4Pfnxbq - for intels Block RThroughput: =10.0; for ryzens, Block RThroughput: <=3.5
So pick cost of 10.
I'm directly using the shuffling asm the llc produced,
without any manual fixups that may be needed
to ensure sequential execution.
clang-format: please reformat the code
- {2, MVT::v2i16, 2}, // (load 4i16 and) deinterleave into 2 x 2i16 - {2, MVT::v4i16, 2}, // (load 8i16 and) deinterleave into 2 x 4i16 - {2, MVT::v8i16, 6}, // (load 16i16 and) deinterleave into 2 x 8i16 - {2, MVT::v16i16, 9}, // (load 32i16 and) deinterleave into 2 x 16i16 + {2, MVT::v2i16, 2}, // (load 4i16 and) deinterleave into 2 x 2i16 + {2, MVT::v4i16, 2}, // (load 8i16 and) deinterleave into 2 x 4i16 + {2, MVT::v8i16, 6}, // (load 16i16 and) deinterleave into 2 x 8i16 + {2, MVT::v16i16, 9}, // (load 32i16 and) deinterleave into 2 x 16i16