This is an archive of the discontinued LLVM Phabricator instance.

[X86][Costmodel] Load/store i16 Stride=6 VF=2 interleaving costs
ClosedPublic

Authored by lebedev.ri on Sep 27 2021, 2:17 PM.

Details

Summary

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.

Diff Detail

Event Timeline

lebedev.ri created this revision.Sep 27 2021, 2:17 PM
lebedev.ri requested review of this revision.Sep 27 2021, 2:17 PM
RKSimon accepted this revision.Sep 28 2021, 8:46 AM

LGTM

This revision is now accepted and ready to land.Sep 28 2021, 8:46 AM
This revision was landed with ongoing or failed builds.Sep 28 2021, 9:15 AM
This revision was automatically updated to reflect the committed changes.