mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-06-19 14:56:00 +01:00
framework/config: Rename by_spec
to by_workload
execution order
Rename the `by_spec` execution order to `by_workload` and update description for clarification.
This commit is contained in:
wa/framework/configuration
@ -125,7 +125,7 @@ class ConfigManager(object):
|
||||
self._jobs_generated = True
|
||||
|
||||
|
||||
def permute_by_job(specs):
|
||||
def permute_by_workload(specs):
|
||||
"""
|
||||
This is that "classic" implementation that executes all iterations of a
|
||||
workload spec before proceeding onto the next spec.
|
||||
@ -205,7 +205,7 @@ def permute_randomly(specs):
|
||||
|
||||
permute_map = {
|
||||
'by_iteration': permute_by_iteration,
|
||||
'by_job': permute_by_job,
|
||||
'by_workload': permute_by_workload,
|
||||
'by_section': permute_by_section,
|
||||
'random': permute_randomly,
|
||||
}
|
||||
|
Reference in New Issue
Block a user