File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
devops/scripts/benchmarks Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -424,7 +424,7 @@ def validate_and_parse_env_args(env_args):
424424 "--output-dir" ,
425425 type = str ,
426426 help = "Location for output files, if --output-html or --output-markdown was specified." ,
427- default = options .output_directory ,
427+ default = options .output_directory ,
428428 )
429429 parser .add_argument (
430430 "--dry-run" ,
Original file line number Diff line number Diff line change 44
55from presets import presets
66
7+
78class Compare (Enum ):
89 LATEST = "latest"
910 AVERAGE = "average"
@@ -46,4 +47,5 @@ class Options:
4647 custom_results_dir = None
4748 build_jobs : int = multiprocessing .cpu_count ()
4849
50+
4951options = Options ()
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ class Result:
2929 lower_is_better : bool = True
3030 suite : str = "Unknown"
3131
32+
3233@dataclass_json
3334@dataclass
3435class BenchmarkRun :
You can’t perform that action at this time.
0 commit comments