/external/trappy/tests/ |
D | 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) 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) 107 trappy.summary_plots(self.actor_order, self.map_label) 127 trappy.summary_plots(self.actor_order, map_label) [all …]
|
D | 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)
|
D | 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/ |
D | compare_runs.py | 19 def compare_runs(actor_order, map_label, runs, **kwords): argument 65 if not isinstance(actor_order, list): 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): argument 107 return compare_runs(actor_order, map_label, [(title, path)], **kwords)
|
D | plot_utils.py | 235 def plot_weighted_input_power(runs, actor_order, width=None, height=None): argument 250 actor_weights.append(zip(actor_order, sorted_weights)) 266 def plot_input_power(runs, actor_order, width=None, height=None): argument 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): argument 289 run.thermal_governor.plot_output_power(actor_order, title=run.name,
|
D | thermal.py | 158 def plot_input_power(self, actor_order, title="", width=None, height=None, argument 195 plot_dfr.columns = actor_order 246 def plot_output_power(self, actor_order, title="", width=None, height=None, argument 280 plot_dfr.columns = actor_order
|
/external/trappy/doc/ |
D | 00 - Quick start.ipynb | 59 "actor_order = [\"GPU\", \"A57\", \"A53\"]" 70 …ollowing to a cell in an ipython notebook. Substitute `map_label` and `actor_order` with the ones … 83 "actor_order = [\"GPU\", \"A57\", \"A53\"]\n", 85 "trappy.summary_plots(actor_order, map_label, path=\"./trace.txt\")"
|
D | summary plots.ipynb | 61 "For a description of `map_label` and `actor_order` see the compare runs notebook." 69 "actor_order = [\"GPU\", \"big\", \"LITTLE\"]" 80 "trappy.summary_plots(actor_order, map_label, path=\"./trace.txt\")"
|
D | compare runs.ipynb | 79 …"`actor_order` is an array that with the order in which the actors appear in the `thermal_power_al… 86 "actor_order = [\"GPU\", \"big\", \"LITTLE\"]" 115 "trappy.compare_runs(actor_order, map_label, runs)"
|