From 00039931733f06ed71de52b09c517547d8370673 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 1 Oct 2015 09:50:01 +0100 Subject: [PATCH] daq: updated workload labeling in daq_power.csv Workload labels, rather than names, are now used in the "workload" column. --- wlauto/instrumentation/daq/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlauto/instrumentation/daq/__init__.py b/wlauto/instrumentation/daq/__init__.py index e0128759..62c799af 100644 --- a/wlauto/instrumentation/daq/__init__.py +++ b/wlauto/instrumentation/daq/__init__.py @@ -205,7 +205,7 @@ class Daq(Instrument): description='DAQ power measurments.') port = os.path.splitext(entry)[0] path = os.path.join(output_directory, entry) - key = (context.spec.id, context.workload.name, context.current_iteration) + key = (context.spec.id, context.spec.label, context.current_iteration) if key not in self._results: self._results[key] = {}