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
parser.add_argument("--save", type=str, help='Save the results for comparison under a specified name.')
242
250
parser.add_argument("--compare", type=str, help='Compare results against previously saved data.', action="append", default=["baseline"])
243
251
parser.add_argument("--iterations", type=int, help='Number of times to run each benchmark to select a median value.', default=options.iterations)
244
-
parser.add_argument("--stddev-threshold", type=float, help='If stddev % is above this threshold, rerun all iterations', default=options.stddev_threshold)
252
+
parser.add_argument("--stddev-threshold", type=float, help='If stddev pct is above this threshold, rerun all iterations', default=options.stddev_threshold)
245
253
parser.add_argument("--timeout", type=int, help='Timeout for individual benchmarks in seconds.', default=options.timeout)
246
254
parser.add_argument("--filter", type=str, help='Regex pattern to filter benchmarks by name.', default=None)
247
255
parser.add_argument("--epsilon", type=float, help='Threshold to consider change of performance significant', default=options.epsilon)
parser.add_argument("--dry-run", help='Do not run any actual benchmarks', action="store_true", default=False)
255
-
parser.add_argument(
256
-
"--iterations-stddev",
257
-
type=int,
258
-
help="Max number of iterations of the loop calculating stddev after completed benchmark runs",
259
-
default=options.iterations_stddev,
260
-
)
263
+
parser.add_argument("--compute-runtime", nargs='?', const=options.compute_runtime_tag, help="Fetch and build compute runtime")
264
+
parser.add_argument("--iterations-stddev", type=int, help="Max number of iterations of the loop calculating stddev after completed benchmark runs", default=options.iterations_stddev)
0 commit comments