This is an archive of the discontinued LLVM Phabricator instance.

[X86][Costmodel] Load/store i32/f32 Stride=2 VF=8 interleaving costs
ClosedPublic

Authored by lebedev.ri on Sep 29 2021, 12:36 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/n8aMKeo4E - for intels Block RThroughput: =4.0; for ryzens, Block RThroughput: <=2.0
So pick cost of 4.

For store we have:
https://godbolt.org/z/n8aMKeo4E - for intels Block RThroughput: =4.0; for ryzens, Block RThroughput: =2.0
So pick cost of 4.

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 29 2021, 12:36 PM
lebedev.ri updated this revision to Diff 376162.
RKSimon accepted this revision.Oct 1 2021, 6:08 AM

LGTM

This revision is now accepted and ready to land.Oct 1 2021, 6:08 AM
This revision was landed with ongoing or failed builds.Oct 1 2021, 7:49 AM
This revision was automatically updated to reflect the committed changes.