From 6e632d2c685dabe61658ab05b951abad1c194be2 Mon Sep 17 00:00:00 2001 From: Parth Raut <68670266+parthraut@users.noreply.github.com> Date: Mon, 28 Oct 2024 22:22:25 -0400 Subject: [PATCH] Update zeus/device/gpu/amd.py Co-authored-by: Jae-Won Chung --- zeus/device/gpu/amd.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zeus/device/gpu/amd.py b/zeus/device/gpu/amd.py index c2af6a47..91fe963f 100644 --- a/zeus/device/gpu/amd.py +++ b/zeus/device/gpu/amd.py @@ -51,7 +51,10 @@ def amdsmi_is_available() -> bool: return False # usually thrown if versions of amdsmi and ROCm are incompatible. except AttributeError: - logger.warning("Do you have the correct version of ROCm and amdsmi installed?") + logger.warning( + "Failed to import amdsmi. " + "Ensure amdsmi's version is at least as high as the current ROCm version." + ) return False try: amdsmi.amdsmi_init()