aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKapileshwar Singh <kapileshwarsingh@gmail.com>2016-08-12 15:17:46 +0200
committerGitHub <noreply@github.com>2016-08-12 15:17:46 +0200
commite4a757e7c85e2d823181f64a210b3d537d3f74a8 (patch)
treea6d4e96a1c8793cd1434b85eb65e44a108c83e67
parentaf6f4c13472388f5512fc6a79e7c26145510a726 (diff)
parent956b609efec4c4823fa4a5c353eef0feba8a30c7 (diff)
downloadbart-e4a757e7c85e2d823181f64a210b3d537d3f74a8.tar.gz
Merge pull request #60 from JaviMerino/assertCPUBusyTime
sched: SchedMultiAssert: add getCPUBusyTime
-rwxr-xr-xbart/sched/SchedAssert.py6
-rwxr-xr-xbart/sched/SchedMultiAssert.py38
-rw-r--r--tests/test_sched_assert.py41
3 files changed, 81 insertions, 4 deletions
diff --git a/bart/sched/SchedAssert.py b/bart/sched/SchedAssert.py
index d716c96..dd0b427 100755
--- a/bart/sched/SchedAssert.py
+++ b/bart/sched/SchedAssert.py
@@ -149,7 +149,7 @@ class SchedAssert(object):
of the task
:param level: The topological level to which the group belongs
- :type level (hashable):
+ :type level: str
:param node: The group of CPUs for which residency
needs to calculated
@@ -195,7 +195,7 @@ class SchedAssert(object):
percent=False):
"""
:param level: The topological level to which the group belongs
- :type level (hashable):
+ :type level: str
:param node: The group of CPUs for which residency
needs to calculated
@@ -324,7 +324,7 @@ class SchedAssert(object):
:code:`from_node` to the :code:`to_node`:
:param level: The topological level to which the group belongs
- :type level (hashable):
+ :type level: str
:param from_node: The node from which the task switches out
:type from_node: list
diff --git a/bart/sched/SchedMultiAssert.py b/bart/sched/SchedMultiAssert.py
index bc37798..32ea17d 100755
--- a/bart/sched/SchedMultiAssert.py
+++ b/bart/sched/SchedMultiAssert.py
@@ -227,6 +227,44 @@ class SchedMultiAssert(object):
else:
return result
+ def getCPUBusyTime(self, level, node, window=None, percent=False):
+ """Get the amount of time the cpus in the system were busy executing the
+ tasks
+
+ :param level: The topological level to which the group belongs
+ :type level: string
+
+ :param node: The group of CPUs for which to calculate busy time
+ :type node: list
+
+ :param window: A (start, end) tuple to limit the scope of the
+ calculation.
+ :type window: tuple
+
+ :param percent: If True the result is normalized to the total
+ time of the period, either the window or the full lenght of
+ the trace.
+ :type percent: bool
+
+ .. math::
+
+ R = \\frac{T_{busy} \\times 100}{T_{total}}
+
+ """
+ residencies = self.getResidency(level, node, window=window)
+
+ busy_time = sum(v["residency"] for v in residencies.itervalues())
+
+ if percent:
+ if window:
+ total_time = window[1] - window[0]
+ else:
+ total_time = self._ftrace.get_duration()
+ num_cpus = len(node)
+ return busy_time / (total_time * num_cpus) * 100
+ else:
+ return busy_time
+
def generate_events(self, level, window=None):
"""Generate Events for the trace plot
diff --git a/tests/test_sched_assert.py b/tests/test_sched_assert.py
index f746a77..029dde6 100644
--- a/tests/test_sched_assert.py
+++ b/tests/test_sched_assert.py
@@ -14,13 +14,14 @@
#
+from bart.sched.SchedAssert import SchedAssert
+from bart.sched.SchedMultiAssert import SchedMultiAssert
import trappy
from trappy.stats.Topology import Topology
import unittest
import utils_tests
-from bart.sched.SchedAssert import SchedAssert
@unittest.skipUnless(utils_tests.trace_cmd_installed(),
"trace-cmd not installed")
@@ -68,3 +69,41 @@ class TestSchedAssert(utils_tests.SetupDirectory):
expected_time = 0.000817
self.assertAlmostEqual(s.getRuntime(window=window), expected_time,
places=9)
+
+class TestSchedMultiAssert(utils_tests.SetupDirectory):
+ def __init__(self, *args, **kwargs):
+ self.big = [1,2]
+ self.little = [0, 3, 4, 5]
+ self.clusters = [self.big, self.little]
+ self.all_cpus = sorted(self.big + self.little)
+ self.topology = Topology(clusters=self.clusters)
+ super(TestSchedMultiAssert, self).__init__(
+ [("raw_trace.dat", "trace.dat")],
+ *args,
+ **kwargs)
+
+ def test_cpu_busy_time(self):
+ """SchedMultiAssert.getCPUBusyTime() work"""
+
+ # precalculated values against these processes in the trace
+ pids = [4729, 4734]
+ first_time = .000214
+ last_time = .003171
+
+ tr = trappy.FTrace()
+ sma = SchedMultiAssert(tr, self.topology, pids=pids)
+
+ expected_busy_time = 0.0041839999754810708
+ busy_time = sma.getCPUBusyTime("all", self.all_cpus, window=(first_time, last_time))
+ self.assertAlmostEqual(busy_time, expected_busy_time)
+
+ # percent calculation
+ expected_busy_pct = 23.582459561949445
+ busy_pct= sma.getCPUBusyTime("all", self.all_cpus, percent=True,
+ window=(first_time, last_time))
+ self.assertAlmostEqual(busy_pct, expected_busy_pct)
+
+ # percent without a window
+ expected_busy_pct = 23.018818156540004
+ busy_pct= sma.getCPUBusyTime("cluster", self.little, percent=True)
+ self.assertAlmostEqual(busy_pct, expected_busy_pct)