1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

Merge pull request #378 from setrofim/master

freqsweep: added support for additional classifiers
This commit is contained in:
setrofim 2017-04-06 15:01:07 +01:00 committed by GitHub
commit 6cfcb89827

View File

@ -147,6 +147,8 @@ class FreqSweep(Instrument):
spec.id = '{}_{}_{}'.format(spec.id, sweep_spec['label'], freq)
spec.classifiers['core'] = sweep_spec['cluster']
spec.classifiers['freq'] = freq
for k, v in sweep_spec['classifiers'].iteritems():
spec.classifiers[k] = v
spec.load(self.device, context.config.ext_loader)
spec.workload.init_resources(context)
spec.workload.validate()