Home | History | Annotate | Download | only in trappy

Lines Matching refs:cpus

46         >>> dfr_in = pd.DataFrame({'cpus': ["000000f0",
53 cpus freq
60 >>> power.pivot_with_labels(dfr_in, "freq", "cpus", map_label)
89 """Return the number of cpus in a cpumask"""
106 pivot = "cpus"
121 return pivot_with_labels(dfr, "freq", "cpus", mapping_label) / 1000
136 pivot = "cpus"
160 load_dfr = pd.DataFrame({"cpus": dfr["cpus"], "load": load_series})
162 return pivot_with_labels(load_dfr, "load", "cpus", mapping_label)
178 idx = dfr["cpus"] == cpumask
182 load_dfr = pd.DataFrame({"cpus": dfr["cpus"], "load": load_series})
184 return pivot_with_labels(load_dfr, "load", "cpus", mapping_label)
196 return pivot_with_labels(dfr, "freq", "cpus", mapping_label) / 1000