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
I am collecting all materials (benchmarks, articles, stories, showcases, etc.) about PGO across different applications here. I am sure there you would be able to find helpful information regarding PGO.
Related to the gamedev domains, I suggest you look at the following things:
I did some benchmarks for Bevy with PGO. PGO-run (first) vs non-PGO (second) - Pastebin. In these results you need to interpret performance decrease as "Release version is slower than PGOed" and performance increase as "Release version is faster than PGOed". As you see, in many scenarios PGO improves performance, but in some of them performance is decreased.
Unreal Engine supports PGO build since 4.27 (release notes). According to the documentation, PGO allows to achieve better performance on UE too (+10% on some CPU-heavy scenarios from this page). Also, I've talked with developers in a local Telegram chat about UE. A person said that they use PGO as a default optimization with UE and their games. The PGO profiles are collected via crafted local test workloads (usually - the most difficult scenes) with Gauntlet. The performance improvement is something like 6-8%
We need to check the PGO effects on Fyrox, and if it works well - write a note in the Fyrox documentation about PGO. I'd appreciate your providing an easy way to build Fyrox with PGO. And experienced users will be able to do it on their own for their own usage scenarios. Another option is to optimize Fyrox build with a generic-enough profile. Providing PGO-optimized binaries could be a trickier task (since it requires preparing a good-enough profile) but as an option would be great to see too.
As an additional optimization, I suggest looking at LLVM BOLT. But from my experience, starting with PGO and then using BOLT would be better.
For the Rust projects, I recommend starting with cargo-pgo - it supports LLVM BOLT too.
I understand that the project is still in the early development stages. So I think the issue is just an improvement idea for future developments.
The text was updated successfully, but these errors were encountered:
Hi!
I am collecting all materials (benchmarks, articles, stories, showcases, etc.) about PGO across different applications here. I am sure there you would be able to find helpful information regarding PGO.
Related to the gamedev domains, I suggest you look at the following things:
We need to check the PGO effects on Fyrox, and if it works well - write a note in the Fyrox documentation about PGO. I'd appreciate your providing an easy way to build Fyrox with PGO. And experienced users will be able to do it on their own for their own usage scenarios. Another option is to optimize Fyrox build with a generic-enough profile. Providing PGO-optimized binaries could be a trickier task (since it requires preparing a good-enough profile) but as an option would be great to see too.
As an additional optimization, I suggest looking at LLVM BOLT. But from my experience, starting with PGO and then using BOLT would be better.
For the Rust projects, I recommend starting with cargo-pgo - it supports LLVM BOLT too.
I understand that the project is still in the early development stages. So I think the issue is just an improvement idea for future developments.
The text was updated successfully, but these errors were encountered: