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
By building the binaries with pgo enabled we can benefit from a 2-14% performance boost for "free", as the compiler will optimize the binaries based on previous data collected at runtime (inlining functions, etc).
This does not only apply to our code but also to the libraries used by the binary, as the data is gathered during runtime.
The text was updated successfully, but these errors were encountered:
Motivation and Context
zetacored
andzetaclientd
could benefit from using profile-guided optimization.By building the binaries with pgo enabled we can benefit from a 2-14% performance boost for "free", as the compiler will optimize the binaries based on previous data collected at runtime (inlining functions, etc).
This does not only apply to our code but also to the libraries used by the binary, as the data is gathered during runtime.
The text was updated successfully, but these errors were encountered: