Adaptive Suspend: configure first param set

This CL configures the first set of experimental parameters for Adaptive
Suspend on targeted devices, including:
* dropping the max backoff from default 60 seconds down to 40
* changing the break-even threshold from 5 seconds (which was just for
  collecting data) to 2
* enabling backoff on short suspends

BUG: 171433995
Test: ran on test device and observed suspend behavior
Change-Id: Icebf50aeade713591f1641664df11570d184d352
This commit is contained in:
Kelly Rossmoyer 2021-06-08 23:19:54 -07:00
parent 71391a0cec
commit eba0f4ff66

View file

@ -1102,8 +1102,11 @@ PRODUCT_PROPERTY_OVERRIDES += \
zygote.critical_window.minute=10 zygote.critical_window.minute=10
# Suspend properties # Suspend properties
# (b/171433995): Enable short suspend backoffs and reduce max backoff time
PRODUCT_PROPERTY_OVERRIDES += \ PRODUCT_PROPERTY_OVERRIDES += \
suspend.short_suspend_threshold_millis=5000 suspend.short_suspend_threshold_millis=2000 \
suspend.short_suspend_backoff_enabled=true \
suspend.max_sleep_time_millis=40000
# (b/183612348): Enable skia reduceOpsTaskSplitting # (b/183612348): Enable skia reduceOpsTaskSplitting
PRODUCT_PROPERTY_OVERRIDES += \ PRODUCT_PROPERTY_OVERRIDES += \