Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/madengine/tools/run_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1176,11 +1176,11 @@ def run(self) -> bool:
if host_os.find("HOST_UBUNTU") != -1:
print(self.console.sh("apt show rocm-libs -a", canFail=True))
elif host_os.find("HOST_CENTOS") != -1:
print(self.console.sh("yum info rocm-libs"))
print(self.console.sh("yum info rocm-libs", canFail=True))
elif host_os.find("HOST_SLES") != -1:
print(self.console.sh("zypper info rocm-libs"))
print(self.console.sh("zypper info rocm-libs", canFail=True))
elif host_os.find("HOST_AZURE") != -1:
print(self.console.sh("tdnf info rocm-libs"))
print(self.console.sh("tdnf info rocm-libs", canFail=True))
else:
print("ERROR: Unable to detect host OS.")
self.return_status = False
Expand Down