Skip to content

Commit

Permalink
Update Omniperf ver checker to allow tags with rocm- prefix
Browse files Browse the repository at this point in the history
Signed-off-by: coleramos425 <[email protected]>
  • Loading branch information
coleramos425 committed Aug 16, 2024
1 parent d43d9d0 commit 8395f67
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utils/ver_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
elif tag.startswith(repoCheck + "-"):
print("OK: allowed match with extra delimiter")
exit(0)
elif tag.startswith("rocm-"):
print("OK: allowed match with 'rocm-' prefix")
exit(0)
else:
print("FAIL: no match - double check top-level VERSION file")
exit(1)

0 comments on commit 8395f67

Please sign in to comment.