Searched refs:tz_id (Results 1 – 3 of 3) sorted by relevance
/external/trappy/trappy/ |
D | thermal.py | 41 tz_id=None): argument 80 if tz_id is not None: 81 thermal_dfr = thermal_dfr[thermal_dfr["id"] == tz_id] 83 raise ValueError("No thermal_temperature trace for thermal zone {}".format(tz_id))
|
D | plot_utils.py | 143 def plot_temperature(runs, width=None, height=None, ylim="range", tz_id=None): argument 157 if tz_id: 158 gov_dfr = gov_dfr[gov_dfr["thermal_zone_id"] == tz_id] 170 tz_id=tz_id)
|
/external/bart/docs/notebooks/thermal/ |
D | Thermal.ipynb | 365 "for tz_id in result:\n", 366 …print \"Thermal Zone: {} spends {:.2f}% time in the temperature range [{}, {}]\".format(tz_id, \n", 367 … result[tz_id],\n", 370 " pct_temp = numpy.percentile(t.getStatement(\"THERMAL:temp\")[tz_id], result[tz_id])\n", 372 …" print \"The {:.2f}th percentile temperature is {:.2f}\".format(result[tz_id], pct_temp / 1000…
|