OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:actor_order
(Results
1 - 6
of
6
) sorted by null
/external/trappy/tests/
test_trappy.py
28
self.
actor_order
= ["GPU", "A57", "A53"]
35
trappy.summary_plots(self.
actor_order
, self.map_label)
38
trappy.summary_plots(self.
actor_order
, self.map_label, width=14,
46
(self.map_label, self.
actor_order
))
49
trappy.summary_plots(self.map_label, self.
actor_order
)
54
self.assertTrue("
actor_order
" in str(exception))
57
trappy.summary_plots(self.
actor_order
, self.
actor_order
)
70
trappy.summary_plots(self.
actor_order
, self.map_label, path=self.out_dir)
90
trappy.summary_plots(self.
actor_order
, self.map_label
[
all
...]
test_thermal.py
74
self.
actor_order
= ["GPU", "A15", "A7"]
98
gov.plot_input_power(self.
actor_order
)
101
gov.plot_input_power(self.
actor_order
, title="Antutu")
105
gov.plot_input_power(self.
actor_order
, ax=ax)
112
weights = zip(self.
actor_order
, [1024, 256, 512])
124
gov.plot_output_power(self.
actor_order
)
127
gov.plot_output_power(self.
actor_order
, title="Antutu")
131
gov.plot_output_power(self.
actor_order
, title="Antutu", ax=ax)
test_plot_utils.py
115
self.
actor_order
= ["GPU", "A57", "A53"]
216
plot_utils.plot_input_power(traces, self.
actor_order
, width=20)
226
plot_utils.plot_output_power(traces, self.
actor_order
, width=20)
/external/trappy/trappy/
compare_runs.py
19
def compare_runs(
actor_order
, map_label, runs, **kwords):
25
:param
actor_order
: An array showing the order in which the actors
37
the names of the cpus matches those in
actor_order
.
56
:type
actor_order
: list
65
if not isinstance(
actor_order
, list):
66
raise TypeError("
actor_order
has to be an array")
91
trappy.plot_utils.plot_input_power(run_data,
actor_order
, **kwords)
92
trappy.plot_utils.plot_output_power(run_data,
actor_order
, **kwords)
96
def summary_plots(
actor_order
, map_label, **kwords):
107
return compare_runs(
actor_order
, map_label, [(title, path)], **kwords
[
all
...]
plot_utils.py
235
def plot_weighted_input_power(runs,
actor_order
, width=None, height=None):
250
actor_weights.append(zip(
actor_order
, sorted_weights))
266
def plot_input_power(runs,
actor_order
, width=None, height=None):
275
run.thermal_governor.plot_input_power(
actor_order
, title=run.name,
278
plot_weighted_input_power(runs,
actor_order
, width, height)
280
def plot_output_power(runs,
actor_order
, width=None, height=None):
289
run.thermal_governor.plot_output_power(
actor_order
, title=run.name,
thermal.py
158
def plot_input_power(self,
actor_order
, title="", width=None, height=None,
174
:param
actor_order
: An array showing the order in which the actors
183
:type
actor_order
: list
192
# in
actor_order
. Note that we can do it just with an
195
plot_dfr.columns =
actor_order
246
def plot_output_power(self,
actor_order
, title="", width=None, height=None,
262
:param
actor_order
: An array showing the order in which the actors
271
:type
actor_order
: list
280
plot_dfr.columns =
actor_order
Completed in 69 milliseconds