1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-07 13:41:24 +00:00

doc/show_cmd: Reword description and add settings option

This commit is contained in:
Marc Bonnici 2018-05-15 10:17:17 +01:00 committed by setrofim
parent 9986423365
commit 52b2df427e
2 changed files with 8 additions and 6 deletions

View File

@ -110,9 +110,9 @@ You can use the same syntax to quickly display information about ``commands``,
Show Show
---- ----
This will show detailed information about an plugin, including more in-depth This will show detailed information about an plugin (workloads, targets,
description and any parameters/configuration that are available. For example instruments etc.), including a full description and any relevant
executing :: parameters/configuration that are available. For example executing ::
wa show benchmarkpi wa show benchmarkpi
@ -138,7 +138,7 @@ will produce something like: ::
number, but an approximation near the first digits of Pi over the same number, but an approximation near the first digits of Pi over the same
calculation circles the algorithms needs. calculation circles the algorithms needs.
So, the number you are getting in miliseconds is the time your mobile device So, the number you are getting in milliseconds is the time your mobile device
takes to run and complete the Pi calculation algorithm resulting in a takes to run and complete the Pi calculation algorithm resulting in a
approximation of the first Pi digits. approximation of the first Pi digits.
@ -190,6 +190,8 @@ will produce something like: ::
measurments or statistics for specific parts of the workload measurments or statistics for specific parts of the workload
execution. execution.
.. note:: You can also use this command to view global settings by using ``wa show settings``
.. _create-command: .. _create-command:

View File

@ -31,7 +31,7 @@ class BenchmarkPi(ApkUiautoWorkload):
from the website: from the website:
The whole idea behind this application is to use the same Pi calculation The whole idea behind this application is to use the same Pi calculation
algorithm on every Android Device and check how fast that proccess is. algorithm on every Android Device and check how fast that process is.
Better calculation times, conclude to faster Android devices. This way you Better calculation times, conclude to faster Android devices. This way you
can also check how lightweight your custom made Android build is. Or not. can also check how lightweight your custom made Android build is. Or not.
@ -39,7 +39,7 @@ class BenchmarkPi(ApkUiautoWorkload):
number, but an approximation near the first digits of Pi over the same number, but an approximation near the first digits of Pi over the same
calculation circles the algorithms needs. calculation circles the algorithms needs.
So, the number you are getting in miliseconds is the time your mobile device So, the number you are getting in milliseconds is the time your mobile device
takes to run and complete the Pi calculation algorithm resulting in a takes to run and complete the Pi calculation algorithm resulting in a
approximation of the first Pi digits. approximation of the first Pi digits.
""" """