You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Profile-Guided Optimization (PGO) is a compiler optimization technique to improve compiled binaries performance based on how these binaries are executed in runtime (which code parts are executed, how frequently, etc.). This information allows a compiler to make better optimization decisions during the compilation process (one of the most important - much better inlining decisions). All major C/C++/Rust/Fortran compilers support PGO.
I suggest using PGO to increase the performance of native-based Python packages.
Several existing PGO examples for Python packages:
Profile-Guided Optimization (PGO) is a compiler optimization technique to improve compiled binaries performance based on how these binaries are executed in runtime (which code parts are executed, how frequently, etc.). This information allows a compiler to make better optimization decisions during the compilation process (one of the most important - much better inlining decisions). All major C/C++/Rust/Fortran compilers support PGO.
I suggest using PGO to increase the performance of native-based Python packages.
Several existing PGO examples for Python packages:
If you want to read more about PGO, I can suggest my repo: https://github.com/zamazan4ik/awesome-pgo . There I collect various benchmarks about PGO, and share my thoughts and guides about it. You also could be interested in the article about PGO and Post-Link Optimization (PLO) (unfortunately, unfinished yet but still should be helpful): https://github.com/zamazan4ik/awesome-pgo/blob/main/article/article.md
The text was updated successfully, but these errors were encountered: