1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-21 02:00:49 +01:00

docs/dev_info/processing_output: Fix formatting

This commit is contained in:
Marc Bonnici 2018-12-18 11:33:37 +00:00
parent b93beb3f1f
commit ea5ea90bb6

View File

@ -152,10 +152,6 @@ For the purposes of this report, they will be used to augment the metric's name.
scores[workload][name][freq] = metric scores[workload][name][freq] = metric
rows = []
for workload in sorted(scores.keys()):
wldata = scores[workload]
Once the metrics have been sorted, generate the report showing the delta Once the metrics have been sorted, generate the report showing the delta
between the two configurations (indicated by the "frequency" classifier) and between the two configurations (indicated by the "frequency" classifier) and
highlight any unexpected deltas (based on the ``lower_is_better`` attribute of highlight any unexpected deltas (based on the ``lower_is_better`` attribute of
@ -165,6 +161,10 @@ statically significant deltas.)
.. code-block:: python .. code-block:: python
rows = []
for workload in sorted(scores.keys()):
wldata = scores[workload]
for name in sorted(wldata.keys()): for name in sorted(wldata.keys()):
min_score = wldata[name]['min'].value min_score = wldata[name]['min'].value
max_score = wldata[name]['max'].value max_score = wldata[name]['max'].value