Skip to content

Commit

Permalink
style: update default location warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bstefanuk committed Jan 9, 2025
1 parent 17a512a commit 633bedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tensile/Utilities/Toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _exeExists(file: Path) -> bool:
"""
if os.access(file, os.X_OK):
if "rocm" not in map(str.lower, file.parts):
warn(f"Found non-ROCm install of `{file.name}`: {file}")
warn(f"Found `{file.name}` but in a non-default ROCm location: {file}")
return True
return False

Expand Down

0 comments on commit 633bedf

Please sign in to comment.