Skip to content

Commit f651383

Browse files
Add missing arguments
1 parent 29bf183 commit f651383

File tree

1 file changed

+24
-1
lines changed
  • tools/submission/submission_checker

1 file changed

+24
-1
lines changed

tools/submission/submission_checker/main.py

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,26 @@ def get_args():
7878
action="store_true",
7979
help="skips the check of extra files inside the root submission dir",
8080
)
81+
parser.add_argument(
82+
"--skip-extra-accuracy-files-check",
83+
action="store_true",
84+
help="skips the check of extra accuracy files like the images folder of SDXL",
85+
)
8186
parser.add_argument(
8287
"--scenarios-to-skip",
8388
help="Delimited list input of scenarios to skip. i.e. if you only have Offline results, pass in 'Server'",
8489
type=str,
8590
)
91+
parser.add_argument(
92+
"--skip-all-systems-have-results-check",
93+
action="store_true",
94+
help="skips the check that all the systems in the systems and measurements folder should have results",
95+
)
96+
parser.add_argument(
97+
"--skip-calibration-check",
98+
action="store_true",
99+
help="skips the check that the calibration documentation should exist",
100+
)
86101
args = parser.parse_args()
87102
return args
88103

@@ -94,7 +109,15 @@ def main():
94109
args.version,
95110
args.extra_model_benchmark_map,
96111
ignore_uncommited=args.submission_exceptions,
97-
skip_power_check=args.skip_power_check,
112+
skip_compliance = args.skip_power_check,
113+
skip_power_check = args.skip_power_check,
114+
skip_meaningful_fields_emptiness_check = args.skip_meaningful_fields_emptiness_check,
115+
skip_check_power_measure_files = args.skip_check_power_measure_files,
116+
skip_empty_files_check = args.skip_empty_files_check,
117+
skip_extra_files_in_root_check = args.skip_extra_files_in_root_check,
118+
skip_extra_accuracy_files_check = args.skip_extra_accuracy_files_check,
119+
skip_all_systems_have_results_check = args.skip_all_systems_have_results_check,
120+
skip_calibration_check = args.skip_calibration_check,
98121
)
99122

100123
if args.scenarios_to_skip:

0 commit comments

Comments
 (0)