From 9e822c4b182ace288cd0506c57c7e69c1c282077 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Tue, 26 May 2015 12:29:55 +0100 Subject: [PATCH] dvfs: fix active_cpus --> online_cpus rename --- wlauto/result_processors/dvfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlauto/result_processors/dvfs.py b/wlauto/result_processors/dvfs.py index 814b2c9f..d2a71171 100644 --- a/wlauto/result_processors/dvfs.py +++ b/wlauto/result_processors/dvfs.py @@ -102,7 +102,7 @@ class DVFS(ResultProcessor): total_cores += len(cores_list) self.numberofcores_in_cluster.append(len(cores_list)) for i in range(current_cores, total_cores): - if i in self.device.active_cpus: + if i in self.device.online_cpus: self.minimum_frequency_cluster.append(int(self.device.get_cpu_min_frequency("cpu{}".format(i)))) break current_cores = total_cores