-
I've followed the guide here: https://github.com/bevyengine/bevy/blob/main/docs/profiling.md How can the contents be displayed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
wgpu_trace is mostly for debugging purposes. It's not meant for profiling your app. Bevy's profiling guide does not mention it. Tracy will give you CPU timing spans. A sampling profiler (e.g. perf) will give you more detailed CPU performance info. GPU timestamps will give you GPU timing spans. GPU profilers (e.g. NSight or RGP) will give you more detailed GPU performance info. |
Beta Was this translation helpful? Give feedback.
wgpu_trace is mostly for debugging purposes. It's not meant for profiling your app. Bevy's profiling guide does not mention it.
Tracy will give you CPU timing spans. A sampling profiler (e.g. perf) will give you more detailed CPU performance info. GPU timestamps will give you GPU timing spans. GPU profilers (e.g. NSight or RGP) will give you more detailed GPU performance info.