Skip to content

Commit

Permalink
fix: py36 support with assignment expr 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bstefanuk committed Jan 9, 2025
1 parent 7aa3122 commit 303c872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tensile/BuildCommands/SourceCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def _buildSourceCodeObjectFile(
)

for target in _listTargetTriples(bundler, objPath):
match = re.search("gfx.*$", target):
match = re.search("gfx.*$", target)
if match:
arch = re.sub(":", "-", match.group())
coPathRaw = _computeSourceCodeObjectPath(target, kernelPath.stem, buildPath, arch)
Expand Down

0 comments on commit 303c872

Please sign in to comment.