Measure performance with the built-in profiler
Use and configure the built-in profiler for iOS.
Read time 5 minutesLast updated 13 days ago
Unity contains a built-in profiler for iOS to provide insight on how the application is running. Every 30 frames, the built-in profiler emits console messages from the application running on the device to help determine if it's CPU or GPU-bound. If your application is CPU-bound, you can determine whether script code or garbage collection is causing the bottleneck.
Here's an example of the built-in profiler's output:
iPhone Unity internal profiler statsframetime> min: 32.5 max: 34.1 avg: 33.3cpu-player> min: 2.2 max: 4.4 avg: 3.7batches> min: 3 max: 3 avg: 3draw calls> min: 3 max: 3 avg: 3tris> min: 1704 max: 1704 avg: 1704verts> min: 5088 max: 5088 avg: 5088dynamic batching> batched draw calls: 0 batches: 0 tris: 0 verts: 0static batching> batched draw calls: 0 batches: 0 tris: 0 verts: 0player-detail> physx: 0.0 animation: 0.0 culling 0.0 skinning: 0.0 batching: 0.0 render: 0.0 fixed-update-count: 0 .. 0scripting-scripts> update: 0.0 fixedUpdate: 0.0 coroutines: 0.0 scripting-memory> information not available on non-development player configuration
All times are measured in milliseconds per frame. You can check the minimum, maximum, and average times over the last thirty frames.
General CPU activity
Property | Function |
|---|---|
| cpu-player | Displays the time your app spends executing code inside the Unity engine and executing scripts on the CPU. |
| cpu-ogles-drv (Android only) | Displays the time spent executing OpenGL ES driver code on the CPU. These driver stats can be affected by several factors, including the number of draw calls, number of internal rendering state changes, rendering pipeline setup, and number of processed vertices. |
| cpu-present (Android only) | The amount of time spent executing the |
| frametime | Represents the overall time of an app frame. Note that iOS hardware is locked at a 60Hz refresh rate, so this property will always return a time that's a multiple of 16.7ms (1000ms/60Hz = 16.7ms). |
Rendering statistics
Property | Function |
|---|---|
| tris # | Total number of triangles sent for rendering. |
| verts # | Total number of vertices sent for rendering. Keep this number under 10000 if your application uses only static geometry. If your application uses many instances of skinned geometry, this number should be much lower. |
| dynamic/static batching | Number of draw-calls, triangles, and vertices that the engine automatically batched. Comparing these numbers with draw-call and triangle totals can give you an idea how well is your scene prepared for batching. Share as many materials as possible among your objects to improve batching. |
Detailed Unity Player statistics
The player-detail section provides a detailed breakdown of what's happening inside the engine:
Property | Function |
|---|---|
| physx | Time spent on physics. |
| animation | Time spent animating bones. |
| culling | Time spent culling objects outside the camera frustum. |
| skinning | Time spent applying animations to skinned meshes. |
| batching | Time spent batching geometry. Batching dynamic geometry is considerably more resource-intensive than batching static geometry. |
| render | Time spent rendering visible objects. |
| fixed-update-count | Minimum and maximum number of FixedUpdates executed during this frame. Too many FixedUpdates will deteriorate performance considerably. |
Detailed script statistics
The scripting-scripts section provides a detailed breakdown of the time spent executing code in the Mono runtime:
Property | Function |
|---|---|
| update | Total time spent executing all |
| fixedUpdate | Total time spent executing all |
| coroutines | Time spent inside script coroutines. |
Detailed statistics on memory allocated by scripts
The scripting-memory section gives you an idea of how memory is managed by the Mono garbage collector:
Property: | Function: |
|---|---|
| allocated heap | Total amount of memory available for allocations. A garbage collection triggers if the heap doesn't have enough memory left for a given allocation. If this doesn't free enough memory, the allocated heap will grow in size. |
| used heap | The portion of the allocated heap which is currently used up by objects. Every time you create a new class instance (not a struct), this number grows until the next garbage collection. |
| max number of collections | Number of garbage collection passes during the last 30 frames. |
| collection total duration | Total time (in milliseconds) of all garbage collection passes that happened during the last 30 frames. |
Configuration
On iOS, the internal profiler is disabled by default. To enable it, use either of the following processes.
Xcode project
To enable the internal profiler from inside the Xcode project, use the following steps:
- Open the Unity-generated Xcode project,
- Select the file.
InternalProfiler.h - Update the following line from:
#define ENABLE_INTERNAL_PROFILER 0
to
#define ENABLE_INTERNAL_PROFILER 1
Player settings
To enable the internal profiler in Unity, use the following steps:
- In the main menu, go to Edit > >Project Settings
?
> iOS.Player Settings?
- In the Debugging and crash reporting section, enable Enable Internal Profiler (Deprecated).
Display the console
To display the output console, in Xcode select View > Debug Area > Activate Console and then run your project. Unity outputs statistics to the console window every 30 frames.