Skip to content

Commit

Permalink
Fix ennumerator id parser.
Browse files Browse the repository at this point in the history
Fixes SWDEV-226018

Change-Id: I14144cdd316c19fe29dcd70b406a52aac8a741cd
  • Loading branch information
Chris Freehill authored and Chris Freehill committed Mar 7, 2020
1 parent a134847 commit 70ebe13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocm_agent_enumerator
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def staticVars(**kwargs):
return func
return deco

@staticVars(search_term=re.compile("gfx\d+"))
@staticVars(search_term=re.compile("gfx[0-9a-fA-F]+"))
def getGCNISA(line, match_from_beginning = False):
if match_from_beginning is True:
result = getGCNISA.search_term.match(line)
Expand Down

0 comments on commit 70ebe13

Please sign in to comment.