From 343459d69026220dbfe7a538dd511e2b611d2772 Mon Sep 17 00:00:00 2001 From: Seunghoon Lee Date: Tue, 14 May 2024 14:13:00 +0900 Subject: [PATCH] make error message more readable --- modules/zluda_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/zluda_installer.py b/modules/zluda_installer.py index d7a5aa56a..7ad3d8534 100644 --- a/modules/zluda_installer.py +++ b/modules/zluda_installer.py @@ -76,7 +76,7 @@ def make_copy(zluda_path: os.PathLike) -> None: def load(zluda_path: os.PathLike) -> None: hip_path = find_hip_sdk() if hip_path is None: - raise RuntimeError('Could not find %HIP_PATH%. Please install AMD HIP SDK.') + raise RuntimeError('Could not find AMD HIP SDK, please install it from https://www.amd.com/en/developer/resources/rocm-hub/hip-sdk.html') for v in HIP_TARGETS: ctypes.windll.LoadLibrary(os.path.join(hip_path, 'bin', v)) for v in ZLUDA_TARGETS: