Power Management (Deprecated)
Updated: Sep 29, 2022
Mobile SDK Deprecation
As of August 31, 2022, Mobile SDK and the VrApi library are no longer supported. Future updates will be delivered through OpenXR extensions and our OpenXR Mobile SDK, not through any new updates to Meta Mobile or PC APIs. - New apps must use OpenXR unless a waiver is granted.
- New apps will not have access to Meta Native Mobile APIs, but existing apps can continue using them.
- No assistance will be provided for creating new apps with Meta Native APIs. You will find recommendations for migrating existing apps to OpenXR in the developer guides.
- Only critical security, privacy, or safety issues in Meta Native APIs will be addressed.
- Any testing of Meta Native Mobile will be restricted to automated QA tests, only to ensure core features remain functional.
Power management is a crucial consideration for Android VR development.
A governor process on the device monitors an internal temperature sensor and tries to take corrective action when the temperature rises above certain levels to prevent malfunctioning or scalding surface temperatures. This corrective action consists of lowering clock rates.
If you run hard into the limiter, the temperature will continue climbing even as clock rates are lowered, and CPU clocks may drop resulting in a significantly degraded VR experience.
If your app consistently uses most of the available processing power, you will eventually run into the thermal governor, even if you have no problem at first. A typical manifestation is poor app performance after ten minutes of play. If you filter logcat output for “thermal”, you will see various notifications of sensor readings and actions being taken. (For more on logcat, see the
Logcat topic.)
A difference to note between Android and PC/console development is that no optimization is ever wasted. Without power considerations, if you have the frame ready in time, it doesn’t matter if you used 90% of the available time or 10%. On mobile, every operation drains the battery and heats the device. Of course, optimization entails effort that comes at the expense of something else, but it is important to note the tradeoff.
Managing Power Consumption
To deal with the power and heat issues identified above, dynamic clock throttling allows your app to manage heat and power consumption.
Fixed Clock Level API
On current Android devices, the CPU and GPU clock rates are fixed to the application set values until the device temperature reaches the limit, at which point the CPU and GPU clocks will change to the power save levels. This change can be detected (see
Power State Notification and Mitigation Strategy below). Apps may choose to continue operating in a degraded fashion, perhaps by changing to 30 FPS. Others may display a warning screen saying that play cannot continue.
The fixed CPU level and fixed GPU level set by the fixed clock level API are abstract quantities, not MHz / GHz, so some effort can be made to make them compatible with future devices. For current hardware, the levels can be 0, 1, 2, 3, or 4 for CPU and GPU. 0 is the slowest and most power efficient; 4 is the fastest and hottest.
Not all clock combinations are valid for all devices. For example, the highest GPU level may not be available for use with the two highest CPU levels. If an invalid matrix combination is provided, the system will not acknowledge the request and clock settings will go into dynamic mode. VrApi asserts and issues a warning in this case.
To set the CPU and GPU clock levels call:
vrapi_SetClockLevels( ovrMobile * ovr, const int32_t cpuLevel, const int32_t gpuLevel );
With your desired clock level. Default clock levels are cpuLevel = 2
, gpuLevel = 2
.
Dynamic Clock Throttling
Dynamic clock throttling scales the performance of the CPU and GPU up as necessary to maintain performance.
Apps still set levels using the fixed clock level API as described above, but these levels are now treated as a baseline and the system can choose to dynamically increase the CPU and GPU clock up based on the app and system performance. Dynamic clock throttling will never downclock your app’s performance.
When testing and debugging your app, you should disable dynamic clock throttling so that it does not interfere with performance timing. You can do this via ADB:
adb shell setprop debug.oculus.adaclocks.force 0
The system will remain off until you restart the device, or turn dynamic clock throttling back on by setting the above property to 1.
Alternatively, you can also test your app by using the VrApi logs to review the clock level of your app. Please review the
Testing and Troubleshooting guide for more information.
There are no magic setting in the SDK to fix power consumption. This is critical.
The length of time your application will be able to run before running into the thermal limit depends on two factors: how much work your app is doing, and what the clock rates are. Changing the clock rates all the way down only yields about a 25% reduction in power consumption for the same amount of work, so most power saving has to come from doing less work in your app.
If your app can run at the (0,0) setting, it should never have thermal issues. It is certainly possible to make sophisticated applications at that level, but Unity based applications might be difficult to optimize for this setting.
There are effective tools for reducing the required GPU performance:
- Don’t use chromatic aberration correction on Asynchronous TimeWarp (ATW).
- Don’t use 4x MSAA.
- Reduce the eye target resolution.
- Using 16-bit color and depth buffers may help.
- It is generally never a good trade to go below 2x MSAA. You should reduce the eye target resolution instead.
These all entail quality tradeoffs which need to be balanced against steps you can take in your application:
- Reduce overdraw (especially blended particles) and complex shaders.
- Always make sure textures are compressed and mipmapped.
In general, CPU load seems to cause more thermal problems than GPU load. Reducing the required CPU performance is much less straightforward. Unity apps should always use the multithreaded renderer option, since two cores running at 1 GHz do work more efficiently than one core running at 2 GHz.
In summary, our general advice:
If you are making an app that will probably be used for long periods of time, like a movie player, pick very low levels. Ideally use (0,0), but it is possible to use more graphics if the CPUs are still mostly idle, perhaps up to (0,2).
If you are okay with the app being restricted to ten-minute chunks of play, you can choose higher clock levels. If it doesn’t work well at (2,2), you probably need to do some serious work.
With the clock rates fixed, observe the reported FPS and GPU times in logcat. The GPU time reported does not include the time spent resolving the rendering back to main memory from on-chip memory, so it is an underestimate. If the GPU times stay under 12 ms or so, you can probably reduce your GPU clock level. If the GPU times are low, but the frame rate isn’t 60 FPS, you are CPU limited.
Always build optimized versions of the application for distribution. Even if a debug build performs well, it will draw more power and heat up the device more than a release build.
Optimize until it runs well.
Power State Notification and Mitigation Strategy
The VrAPI provides power level state detection and handling.
Power level state refers to whether the device is operating at normal clock frequencies or if the device has risen above a thermal threshold and thermal throttling (power save mode) is taking place. In power save mode, CPU and GPU frequencies will be switched to power save levels. The power save levels are equivalent to setting the fixed CPU and GPU clock levels to (0,0). If the temperature continues to rise, clock frequencies will be set to minimum values which are not capable of supporting VR applications.
Once it is detected that thermal throttling is taking place, the app has the choice to either continue operating in a degraded fashion or to immediately exit to the Home menu with a head-tracked error message.
In the first case, when the application first transitions from normal operation to power save mode, the following will occur:
- A system menu will be brought up to display a dismissible warning message indicating that the device needs to cool down.
- After the message is dismissed, the application will resume in 30 Hz ATW mode with correction for chromatic aberration disabled.
- If the device clock frequencies are throttled to minimum levels after continued use, a non-dismissible error message will be shown and the user will have to undock the device.
In this mode, the application may choose to take additional app-specific measures to reduce performance requirements. For native applications, you may use the following VrApi call to detect if power save mode is active:
vrapi_GetSystemStatusInt( &java, VRAPI_SYS_STATUS_THROTTLED ) != VRAPI_FALSE ).
In the second case, when the application transitions from normal operation to power save mode, a system menu will be brought up to display a non-dismissible error message and the user will have to undock the device to continue. This mode is intended for applications which may not perform well at reduced levels even with 30 Hz ATW enabled.
To enable power save mode, the native application should specify the ovrModeFlags
flag VRAPI_MODE_FLAG_ALLOW_POWER_SAVE
on the ovrModeParms
for vrapi_EnterVrMode
.