From 1a604ac2e3e5975e2aa88e157430a65e937fe0d8 Mon Sep 17 00:00:00 2001
From: Vasilis Flouris <vasilis.flouris@arm.com>
Date: Wed, 3 Jun 2015 16:43:45 +0100
Subject: [PATCH] Fixes a bug in energy model instrument

---
 wlauto/instrumentation/energy_model/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wlauto/instrumentation/energy_model/__init__.py b/wlauto/instrumentation/energy_model/__init__.py
index 9928c881..c7212cd9 100644
--- a/wlauto/instrumentation/energy_model/__init__.py
+++ b/wlauto/instrumentation/energy_model/__init__.py
@@ -447,7 +447,7 @@ class EnergyModelInstrument(Instrument):
                 power_metric = spec.num_cpus * (power_metric / self.number_of_cpus[cluster])
 
         data.append(index_matter + ['performance', perf_metric])
-        data.append(index_matter + ['{}_power'.format(self.get_core_name(cluster)), power_metric])
+        data.append(index_matter + ['power', power_metric])
 
     def before_overall_results_processing(self, context):
         # pylint: disable=too-many-locals