https://topofmind.dev/blog/2023/08/25/profile-guided-optimizations-in-go/ #10
Replies: 1 comment 1 reply
-
|
Nice article. I didn't notice any mistakes except that there were a few things missing. Eg, you don't mention PGO code layout optimizations (possibly more important than even inlining). Code layout is a general term for optimizations done in different parts of the build process (block reordering and function reordering) which have large benefits especially with improving the use of instruction cache. (See my blog: https://andrewwphillips.github.io/blog/pgo.html#code-layout ) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
https://topofmind.dev/blog/2023/08/25/profile-guided-optimizations-in-go/
How to use PGO to improve the performance of your production applications
https://landontclipp.github.io/blog/2023/08/25/profile-guided-optimizations-in-go/
Beta Was this translation helpful? Give feedback.
All reactions