diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-11 12:15:01 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-11 12:15:01 +0100 |
commit | a5b0d06edfa3785fe26badda5f7419395d4a63af (patch) | |
tree | 79e0a7404960d5e7a4d94381f06cb4f4ac3a0bfb /bin | |
parent | a91a70e1d0f420a981b9e33fa11c424212a42b52 (diff) |
move --plot-param definition to cli.py
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/analyze-archive.py | 10 | ||||
-rwxr-xr-x | bin/analyze-kconfig.py | 10 | ||||
-rwxr-xr-x | bin/analyze-log.py | 10 | ||||
-rwxr-xr-x | bin/analyze-timing.py | 7 |
4 files changed, 0 insertions, 37 deletions
diff --git a/bin/analyze-archive.py b/bin/analyze-archive.py index 1a83bfe..e6fbe8e 100755 --- a/bin/analyze-archive.py +++ b/bin/analyze-archive.py @@ -182,16 +182,6 @@ if __name__ == "__main__": "--no-cache", action="store_true", help="Do not load cached measurement results" ) parser.add_argument( - "--plot-param", - metavar="<name>:<attribute>:<parameter>[:gplearn function][;<name>:<attribute>:<parameter>:[function];...])", - type=str, - help="Plot measurements for <name> <attribute> by <parameter>. " - "X axis is parameter value. " - "Plots the model function as one solid line for each combination of non-<parameter> parameters. " - "Also plots the corresponding measurements. " - "If gplearn function is set, it is plotted using dashed lines.", - ) - parser.add_argument( "--plot-traces", metavar="NAME", type=str, diff --git a/bin/analyze-kconfig.py b/bin/analyze-kconfig.py index 68e4668..9954656 100755 --- a/bin/analyze-kconfig.py +++ b/bin/analyze-kconfig.py @@ -150,16 +150,6 @@ def main(): default=list(), help="table: show LUT, model, and static prediction error for each key and attribute.", ) - parser.add_argument( - "--plot-param", - metavar="<name>:<attribute>:<parameter>[:gplearn function][;<name>:<attribute>:<parameter>:[function];...])", - type=str, - help="Plot measurements for <name> <attribute> by <parameter>. " - "X axis is parameter value. " - "Plots the model function as one solid line for each combination of non-<parameter> parameters. " - "Also plots the corresponding measurements. " - "If gplearn function is set, it is plotted using dashed lines.", - ) parser.add_argument("kconfig_path", type=str, help="Path to Kconfig file") parser.add_argument( "model", diff --git a/bin/analyze-log.py b/bin/analyze-log.py index 2ac1e84..0c30b3b 100755 --- a/bin/analyze-log.py +++ b/bin/analyze-log.py @@ -37,16 +37,6 @@ def main(): ) dfatool.cli.add_standard_arguments(parser) parser.add_argument( - "--plot-param", - metavar="<name>:<attribute>:<parameter>[;<name>:<attribute>:<parameter>;...])", - type=str, - help="Plot measurements for <name> <attribute> by <parameter>. " - "X axis is parameter value. " - "Plots the model function as one solid line for each combination of non-<parameter> parameters. " - "Also plots the corresponding measurements. " - "If gplearn function is set, it is plotted using dashed lines.", - ) - parser.add_argument( "--show-quality", choices=["table"], action="append", diff --git a/bin/analyze-timing.py b/bin/analyze-timing.py index 576c6ad..bd9a81b 100755 --- a/bin/analyze-timing.py +++ b/bin/analyze-timing.py @@ -14,13 +14,6 @@ Options: Plot all mesurements for <name> <attribute> without regard for parameter values. X axis is measurement number/id. ---plot-param=<name> <attribute> <parameter> [gplearn function][;<name> <attribute> <parameter> [function];...] - Plot measurements for <name> <attribute> by <parameter>. - X axis is parameter value. - Plots the model function as one solid line for each combination of non-<parameter> - parameters. Also plots the corresponding measurements. - If gplearn function is set, it is plotted using dashed lines. - --info Show parameter names and values |