mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-06-18 06:16:05 +01:00
wa: Rename Instrumentation
to Instruments
To be maintain a consistent naming scheme, rename all instances of `Instrumentation` to `Instruments`
This commit is contained in:
wa
__init__.py
commands
framework
instruments
@ -36,7 +36,7 @@ class CreateAgendaSubcommand(SubCommand):
|
||||
|
||||
def execute(self, state, args):
|
||||
agenda = OrderedDict()
|
||||
agenda['config'] = OrderedDict(instrumentation=[], output_processors=[])
|
||||
agenda['config'] = OrderedDict(instruments=[], output_processors=[])
|
||||
agenda['global'] = OrderedDict(iterations=args.iterations)
|
||||
agenda['workloads'] = []
|
||||
target_desc = None
|
||||
@ -64,7 +64,7 @@ class CreateAgendaSubcommand(SubCommand):
|
||||
agenda['workloads'].append(entry)
|
||||
else:
|
||||
if extcls.kind == 'instrument':
|
||||
agenda['config']['instrumentation'].append(name)
|
||||
agenda['config']['instruments'].append(name)
|
||||
if extcls.kind == 'output_processor':
|
||||
agenda['config']['output_processors'].append(name)
|
||||
agenda['config'][name] = config
|
||||
|
Reference in New Issue
Block a user