mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 03:12:34 +01:00
wa: Rename results_processors
to output_processors
For clarity and to better reflect their purpose, rename `results_processors` to `output_processors`.
This commit is contained in:
@@ -36,7 +36,7 @@ class CreateAgendaSubcommand(SubCommand):
|
||||
|
||||
def execute(self, state, args):
|
||||
agenda = OrderedDict()
|
||||
agenda['config'] = OrderedDict(instrumentation=[], result_processors=[])
|
||||
agenda['config'] = OrderedDict(instrumentation=[], output_processors=[])
|
||||
agenda['global'] = OrderedDict(iterations=args.iterations)
|
||||
agenda['workloads'] = []
|
||||
target_desc = None
|
||||
@@ -65,8 +65,8 @@ class CreateAgendaSubcommand(SubCommand):
|
||||
else:
|
||||
if extcls.kind == 'instrument':
|
||||
agenda['config']['instrumentation'].append(name)
|
||||
if extcls.kind == 'result_processor':
|
||||
agenda['config']['result_processors'].append(name)
|
||||
if extcls.kind == 'output_processor':
|
||||
agenda['config']['output_processors'].append(name)
|
||||
agenda['config'][name] = config
|
||||
|
||||
if args.output:
|
||||
|
@@ -74,7 +74,7 @@ class RunCommand(Command):
|
||||
self.parser.add_argument('--disable', action='append', dest='augmentations_to_disable',
|
||||
default=[],
|
||||
metavar='INSTRUMENT', help="""
|
||||
Specify an instrument or result processor to
|
||||
Specify an instrument or output processor to
|
||||
disable from the command line. This equivalent
|
||||
to adding "~{metavar}" to the instrumentation
|
||||
list in the agenda. This can be used to
|
||||
|
Reference in New Issue
Block a user