From 878fb9f75b41daa444f010467d9c052b8bb02767 Mon Sep 17 00:00:00 2001 From: Seunghoon Lee Date: Thu, 20 Mar 2025 23:03:43 +0900 Subject: [PATCH] zluda 3.9.1 --- modules/zluda_installer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/zluda_installer.py b/modules/zluda_installer.py index dc3d85e61..4a0b9ffa4 100644 --- a/modules/zluda_installer.py +++ b/modules/zluda_installer.py @@ -45,10 +45,10 @@ def set_default_agent(agent: rocm.Agent): global hipBLASLt_available, hipBLASLt_enabled # pylint: disable=global-statement hipBLASLt_available = is_nightly and os.path.exists(rocm.blaslt_tensile_libpath) - hipBLASLt_enabled = hipBLASLt_available and ((not os.path.exists(path) and nightly) or os.path.exists(os.path.join(path, 'cublasLt.dll'))) + hipBLASLt_enabled = hipBLASLt_available and os.path.exists(os.path.join(rocm.path, "bin", "hipblaslt.dll")) global MIOpen_available # pylint: disable=global-statement - MIOpen_available = is_nightly and (skip_arch_test or agent.gfx_version in (0x908, 0x90a, 0x940, 0x941, 0x942, 0x1030, 0x1100, 0x1101, 0x1102, 0x1150,)) + MIOpen_available = is_nightly and os.path.exists(os.path.join(rocm.path, "bin", "MIOpen.dll")) def is_reinstall_needed() -> bool: # ZLUDA<3.8.7 @@ -60,7 +60,7 @@ def install() -> None: return platform = "windows" - commit = os.environ.get("ZLUDA_HASH", "4d14bf95d4c500863e240a0b1fa82793d0da789b") + commit = os.environ.get("ZLUDA_HASH", "ae0540beb129ffd140226ce956b386619b38f84c") if nightly: platform = "nightly-" + platform urllib.request.urlretrieve(f'https://github.com/lshqqytiger/ZLUDA/releases/download/rel.{commit}/ZLUDA-{platform}-rocm{rocm.version[0]}-amd64.zip', '_zluda')