Skip to content

Commit d02d748

Browse files
committed
better
1 parent 2cc653b commit d02d748

File tree

3 files changed

+146
-27
lines changed

3 files changed

+146
-27
lines changed

CHANGELOGS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Change Logs
44
0.7.1
55
+++++
66

7-
* :pr:`151`: adds command line ``agg``
7+
* :pr:`151`: adds command line ``agg``, class CubeLogsPerformance to produce timeseries
88
* :pr:`152`: add a function to compute fully dynamic shapes given any inputs
99

1010
0.7.0

onnx_diagnostic/_command_lines_parser.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,12 @@ def get_parser_agg() -> ArgumentParser:
637637
action=BooleanOptionalAction,
638638
help="Keeps only the most recent experiment for the same of keys.",
639639
)
640+
parser.add_argument(
641+
"--raw",
642+
default=True,
643+
action=BooleanOptionalAction,
644+
help="Keeps the raw data in a sheet.",
645+
)
640646
parser.add_argument("-t", "--time", default="DATE", help="Date or time column")
641647
parser.add_argument(
642648
"-k",
@@ -719,6 +725,7 @@ def _cmd_agg(argv: List[Any]):
719725
{k: k for k in args.views.split(",")},
720726
verbose=args.verbose,
721727
csv=args.csv.split(","),
728+
raw=args.raw,
722729
)
723730
if args.verbose:
724731
print(f"Wrote {args.output!r}")

0 commit comments

Comments
 (0)