Skip to content

Commit

Permalink
update rule change to start at v4.1 instead of v4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-frank authored and pgmpablo157321 committed Sep 19, 2024
1 parent ed46fd9 commit 48ccae8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mlperf_logging/system_desc_checker/system_desc_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ def check_system_desc(json_file, usage, ruleset):
"Preview"
]
ruleset_major_version=int(ruleset.split('.')[0])
if ("status" in contents) and (ruleset_major_version >= 4) and (contents["status"] not in availability_options):
ruleset_minor_version=int(ruleset.split('.')[1])
if (("status" in contents)
and ((ruleset_major_version >= 4)
or (ruleset_major_version == 4 and ruleset_minor_version >= 1))
and (contents["status"] not in availability_options)):
valid = False
invalid_reasons = ["Field status contains a non valid value: {}, must be one of {}".format(contents["status"], availability_options)]

Expand Down

0 comments on commit 48ccae8

Please sign in to comment.