1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-21 18:18:41 +00:00

daq: updated workload labeling in daq_power.csv

Workload labels, rather than names, are now used in the "workload"
column.
This commit is contained in:
Sergei Trofimov 2015-10-01 09:50:01 +01:00
parent b6442acf80
commit 0003993173

View File

@ -205,7 +205,7 @@ class Daq(Instrument):
description='DAQ power measurments.') description='DAQ power measurments.')
port = os.path.splitext(entry)[0] port = os.path.splitext(entry)[0]
path = os.path.join(output_directory, entry) 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: if key not in self._results:
self._results[key] = {} self._results[key] = {}