You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: devops/scripts/benchmarks/compare.py
+75-4Lines changed: 75 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -340,14 +340,25 @@ def to_hist(
340
340
parser_avg.add_argument(
341
341
"--regression-filter",
342
342
type=str,
343
-
help="If provided, only regressions matching provided regex will cause exit status 1.",
343
+
help="If provided, only regressions in tests matching provided regex will cause exit status 1.",
344
344
default=None,
345
345
)
346
+
parser_avg.add_argument(
347
+
"--regression-filter-type",
348
+
type=str,
349
+
help="Name to use in logging for tests that fall within the filter defined by --regression-filter; i.e. if --regression-filter filters for SYCL benchmarks, --regression-filter-type could be 'SYCL'.",
350
+
default="filtered",
351
+
)
346
352
parser_avg.add_argument(
347
353
"--dry-run",
348
354
action="store_true",
349
355
help="Do not return error upon regressions.",
350
356
)
357
+
parser_avg.add_argument(
358
+
"--produce-github-summary",
359
+
action="store_true",
360
+
help=f"Create a summary file '{options.github_summary_filename}' for Github workflow summaries.",
0 commit comments