aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin DuBois <kevindubois@google.com>2017-09-28 14:53:56 -0700
committerKevin DuBois <kevindubois@google.com>2017-10-11 12:38:45 -0700
commitb45fa6bd4f8b145334fb6f7a56327a63d0315634 (patch)
treeb304923eec86dca776e3f01cc64743f16bbab909
parentf5e6c7dd1f499f557e7ad53a1da59fec2c8ab066 (diff)
downloadlisa-b45fa6bd4f8b145334fb6f7a56327a63d0315634.tar.gz
Fix the generation of CPU frequency plots.
Computing the plot timeframes required that some of the sanitizing functions had run. The sanitizing functions generated dataframe columns used in creating the timeline for some of the matplot graphs (eg, CPU frequencies) Fixes: 67415600 Test: run the notebook at Test: ipynb/examples/android/workloads/Android_YouTube.ipynb Test: and see it produce the plots it was supposed to Change-Id: Ie3e0c2b6bd3262ccec3e8ec3ad635344f46cff8a
-rw-r--r--libs/utils/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/utils/trace.py b/libs/utils/trace.py
index 53379d5..a9dc602 100644
--- a/libs/utils/trace.py
+++ b/libs/utils/trace.py
@@ -271,6 +271,7 @@ class Trace(object):
# Sanitize cgroup info if any
self._sanitize_CgroupAttachTask()
+ self._sanitize_SchedOverutilized()
# Santization not possible if platform missing
if not self.platform:
@@ -281,7 +282,6 @@ class Trace(object):
self._sanitize_SchedBoostCpu()
self._sanitize_SchedBoostTask()
self._sanitize_SchedEnergyDiff()
- self._sanitize_SchedOverutilized()
self._sanitize_CpuFrequency()
self.__loadTasksNames(tasks)