Get an overview of where your application spends time with the CPU ProfilerA window that helps you to optimize your game. It shows how much time is spent in the various areas of your game. For example, it can report the percentage of time spent rendering, animating, or in your game logic. More info
See in Glossary module.
The CPU Usage Profiler module provides an overview of areas where your application spends time, such as on rendering, its scriptsA piece of code that allows you to create your own Components, trigger game events, modify Component properties over time and respond to user input in any way you like. More info
See in Glossary, and animation. It displays this information in a chart at the top of the window. You can select individual frames to inspect data in a timeline, or a variety of hierarchical views in the details pane in the lower half of the Profiler window.
The CPU Usage Profiler module displays profiling data in a timeline view, or in different hierarchical views. The following views are available:
To change views, use the dropdown view selector in the bottom half of the Profiler window.
The Timeline view is the default view for the CPU Usage Profiler module. It contains an overview of your application spent time and how the timings relate to each other. It displays performance data from all threads in their own subsections and along the same time axis.
Use the Timeline view to understand how activities on the different threads correlate to each other in their parallel execution. The Timeline view also displays how much your application uses the different threads, such as the job system’s worker threads. It also indicates how work on the threads are queued up, and if any thread is idling (Idle sample) or waiting for another thread or a job to finish (Wait for x sample).
The Hierarchy views display profiling data one thread at a time, defaulting to the main thread. These views only display a sample’s duration, whereas the Timeline view shows at which times each sample occurred.
The Hierarchy view lists all samples you have profiled and groups them together by their shared call stack and the hierarchy of profiler markersPlaced in code to describe a CPU or GPU event that is then displayed in the Unity Profiler window. Added to Unity code by default, or you can use ProfilerMarker API to add your own custom markers. More info
See in Glossary. The Raw Hierarchy view doesn’t group samples together, which makes it ideal for looking into samples on a granular level.
The Inverted Hierarchy view groups samples by profiler marker and displays them with inverted sample stacks. The first level of the hierarchy shows an item for each profiler marker. Each child item in the tree represents part of an inverted sample stack and its data shows how much time or heap memory contributed via this sample stack to the aggregated parent item.
The Inverted Hierarchy view is useful to reveal larger performance issues caused by lots of instances of small performance impacts. These kinds of issues can be harder to spot in the Timeline or non-inverted hierarchy views
Profiler markers emit a set of samples which the Profiler uses to display and organize profiling information into different chronological and hierarchical views. All samples that the Profiler window displays are part of a sample stack.
A sample stack is different from a method’s call stack because Unity doesn’t tie every sample to a specific method, and it doesn’t record every call as a sample. Deep Profiling adds a profiler marker to every function call, but it doesn’t add any for native code, and recording these samples comes with a high overhead.
You can use the CPU Usage Profiler module to inspect the full call stacks for samples that GC.Alloc
, UnsafeUtility.Malloc
, and JobHandle.Complete
emit. This is useful if you want to track down where these samples happened, without enabling Deep Profiling and encountering its high overhead. For information on how to enable call stacks, refer to Enable full call stacks.
You can also use the CPU Usage Profiler to investigate where Unity performed memory cleanup.
Whenever your code creates a new managed object there’s a chance that it will not fit in the current memory heap and Unity performs garbage collection. Garbage collection pauses all threads and scans the managed heap for unused memory. This process might take a long time and disrupts frame rate. Managed garbage collection appears as GC.Collect
samples in the Profiler, while managed allocations appear as GC.Alloc
.
To prevent the garbage collector from affecting your application’s frame rate, try to keep the GC.Alloc
value at zero while your application runs, and to keep the heap size small. In the Timeline view, GC.Alloc
samples appear colored in red-magenta, and represent the size of the allocation.
To learn where in the code managed allocations happen, you can enable the full call stacks for GC.Alloc. For more information about the managed heap, refer to the documentation on Managed memory.
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.