mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
refactor rocm & zluda
This commit is contained in:
+103
@@ -0,0 +1,103 @@
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
import subprocess
|
||||
from typing import Union, List
|
||||
|
||||
|
||||
def resolve_link(path_: str) -> str:
|
||||
if not os.path.islink(path_):
|
||||
return path_
|
||||
return resolve_link(os.readlink(path_))
|
||||
|
||||
|
||||
def dirname(path_: str, r: int = 1) -> str:
|
||||
for _ in range(0, r):
|
||||
path_ = os.path.dirname(path_)
|
||||
return path_
|
||||
|
||||
|
||||
def spawn(command: str) -> str:
|
||||
process = subprocess.run(command, shell=True, check=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
return process.stdout.decode(encoding="utf8", errors="ignore")
|
||||
|
||||
|
||||
if sys.platform == "win32":
|
||||
def find() -> Union[str, None]:
|
||||
hip_path = shutil.which("hipconfig")
|
||||
if hip_path is not None:
|
||||
return dirname(resolve_link(hip_path), 2)
|
||||
|
||||
hip_path = os.environ.get("HIP_PATH", None)
|
||||
if hip_path is not None:
|
||||
return hip_path
|
||||
|
||||
program_files = os.environ.get('ProgramFiles', r'C:\Program Files')
|
||||
hip_path = rf'{program_files}\AMD\ROCm'
|
||||
if not os.path.exists(hip_path):
|
||||
return None
|
||||
|
||||
class Version:
|
||||
major: int
|
||||
minor: int
|
||||
|
||||
def __init__(self, string: str):
|
||||
self.major, self.minor = [int(v) for v in string.strip().split(".")]
|
||||
|
||||
def __gt__(self, other):
|
||||
return self.major * 10 + other.minor > other.major * 10 + other.minor
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.major}.{self.minor}"
|
||||
|
||||
latest = None
|
||||
versions = os.listdir(hip_path)
|
||||
for s in versions:
|
||||
item = None
|
||||
try:
|
||||
item = Version(s)
|
||||
except Exception:
|
||||
continue
|
||||
if latest is None:
|
||||
latest = item
|
||||
continue
|
||||
if item > latest:
|
||||
latest = item
|
||||
|
||||
if latest is None:
|
||||
return None
|
||||
|
||||
return os.path.join(hip_path, str(latest))
|
||||
|
||||
def get_version() -> str: # cannot just run hipconfig as it requires Perl installed on Windows.
|
||||
return os.path.basename(path)
|
||||
|
||||
def get_agents() -> List[str]:
|
||||
return [x.split(' ')[-1].strip() for x in spawn("hipinfo").split("\n") if x.startswith('gcnArchName:')]
|
||||
|
||||
is_wsl: bool = False
|
||||
else:
|
||||
def find() -> Union[str, None]:
|
||||
rocm_path = shutil.which("hipconfig")
|
||||
if rocm_path is not None:
|
||||
return dirname(resolve_link(rocm_path), 2)
|
||||
if not os.path.exists("/opt/rocm"):
|
||||
return None
|
||||
return resolve_link("/opt/rocm")
|
||||
|
||||
def get_version() -> str:
|
||||
arr = spawn(f"{os.path.join(path, 'hipconfig')} --version").split(".")
|
||||
return f'{arr[0]}.{arr[1]}' if len(arr) >= 2 else None
|
||||
|
||||
def get_agents() -> List[str]:
|
||||
if is_wsl: # WSL does not have 'rocm_agent_enumerator'
|
||||
agents = spawn("rocminfo").split("\n")
|
||||
return [x.strip().split(" ")[-1] for x in agents if x.startswith(' Name:') and "CPU" not in x]
|
||||
else:
|
||||
agents = spawn("rocm_agent_enumerator").split("\n")
|
||||
return [x for x in agents if x and x != 'gfx000']
|
||||
|
||||
is_wsl: bool = os.environ.get('WSL_DISTRO_NAME', None) is not None
|
||||
path = find()
|
||||
is_installed = path is not None
|
||||
version = get_version()
|
||||
@@ -2,68 +2,8 @@ import os
|
||||
import ctypes
|
||||
import shutil
|
||||
import zipfile
|
||||
import platform
|
||||
import urllib.request
|
||||
from typing import Tuple
|
||||
|
||||
|
||||
class HIPSDK:
|
||||
is_installed = False
|
||||
|
||||
version: str
|
||||
path: str
|
||||
targets: Tuple[str]
|
||||
|
||||
class Version:
|
||||
major: int
|
||||
minor: int
|
||||
|
||||
def __init__(self, version: str):
|
||||
self.major, self.minor = [int(v) for v in version.strip().split(".")]
|
||||
|
||||
def __gt__(self, other):
|
||||
return self.major * 10 + other.minor > other.major * 10 + other.minor
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.major}.{self.minor}"
|
||||
|
||||
def __init__(self):
|
||||
if platform.system() != 'Windows':
|
||||
raise RuntimeError('ZLUDA cannot be automatically installed on Linux. Please select --use-cuda for ZLUDA or --use-rocm for ROCm.')
|
||||
|
||||
program_files = os.environ.get('ProgramFiles', r'C:\Program Files')
|
||||
rocm_path = rf'{program_files}\AMD\ROCm'
|
||||
default_version = None
|
||||
if os.path.exists(rocm_path):
|
||||
versions = os.listdir(rocm_path)
|
||||
for s in versions:
|
||||
version = None
|
||||
try:
|
||||
version = HIPSDK.Version(s)
|
||||
except Exception:
|
||||
continue
|
||||
if default_version is None:
|
||||
default_version = version
|
||||
continue
|
||||
if version > default_version:
|
||||
default_version = version
|
||||
|
||||
self.path = os.environ.get('HIP_PATH', None)
|
||||
if self.path is None:
|
||||
if os.environ.get("HIP_PATH_61", None) is not None:
|
||||
self.version = "6.1"
|
||||
elif os.environ.get("HIP_PATH_57", None) is not None:
|
||||
self.version = "5.7"
|
||||
elif default_version is None:
|
||||
raise RuntimeError('Could not find AMD HIP SDK, please install it from https://www.amd.com/en/developer/resources/rocm-hub/hip-sdk.html')
|
||||
else:
|
||||
self.version = str(default_version)
|
||||
else:
|
||||
self.version = os.path.basename(self.path) or os.path.basename(os.path.dirname(self.path))
|
||||
|
||||
self.targets = ['rocblas.dll', 'rocsolver.dll', f'hiprtc{"".join([v.zfill(2) for v in self.version.split(".")])}.dll']
|
||||
HIPSDK = HIPSDK()
|
||||
HIPSDK.is_installed = True
|
||||
from modules import rocm
|
||||
|
||||
|
||||
DLL_MAPPING = {
|
||||
@@ -71,6 +11,7 @@ DLL_MAPPING = {
|
||||
'cusparse.dll': 'cusparse64_11.dll',
|
||||
'nvrtc.dll': 'nvrtc64_112_0.dll',
|
||||
}
|
||||
HIPSDK_TARGETS = ['rocblas.dll', 'rocsolver.dll', f'hiprtc{"".join([v.zfill(2) for v in rocm.version.split(".")])}.dll']
|
||||
ZLUDA_TARGETS = ('nvcuda.dll', 'nvml.dll',)
|
||||
|
||||
|
||||
@@ -83,10 +24,12 @@ def install(zluda_path: os.PathLike) -> None:
|
||||
return
|
||||
|
||||
default_hash = None
|
||||
if HIPSDK.version == "6.1":
|
||||
if rocm.version == "6.1":
|
||||
default_hash = 'd7714d84c0c13bbf816eaaac32693e4e75e58a87'
|
||||
elif HIPSDK.version == "5.7":
|
||||
elif rocm.version == "5.7":
|
||||
default_hash = '11cc5844514f93161e0e74387f04e2c537705a82'
|
||||
else:
|
||||
raise RuntimeError(f'Unsupported HIP SDK version: {rocm.version}')
|
||||
urllib.request.urlretrieve(f'https://github.com/lshqqytiger/ZLUDA/releases/download/rel.{os.environ.get("ZLUDA_HASH", default_hash)}/ZLUDA-windows-amd64.zip', '_zluda')
|
||||
with zipfile.ZipFile('_zluda', 'r') as archive:
|
||||
infos = archive.infolist()
|
||||
@@ -112,8 +55,8 @@ def make_copy(zluda_path: os.PathLike) -> None:
|
||||
|
||||
|
||||
def load(zluda_path: os.PathLike) -> None:
|
||||
for v in HIPSDK.targets:
|
||||
ctypes.windll.LoadLibrary(os.path.join(HIPSDK.path, 'bin', v))
|
||||
for v in HIPSDK_TARGETS:
|
||||
ctypes.windll.LoadLibrary(os.path.join(rocm.path, 'bin', v))
|
||||
for v in ZLUDA_TARGETS:
|
||||
ctypes.windll.LoadLibrary(os.path.join(zluda_path, v))
|
||||
for v in DLL_MAPPING.values():
|
||||
|
||||
Reference in New Issue
Block a user