Merge branch 'fix/rocm-strix-halo-unified-memory' of github.com:LeoBorcherding/unsloth into fix/rocm-strix-halo-unified-memory

This commit is contained in:
LeoBorcherding 2026-05-19 16:40:13 -05:00
commit 888f91d4f9

View file

@ -104,7 +104,7 @@ if sys.platform == "win32":
_km = _re_bnb.search(r"rocm(\d+)", os.path.basename(p))
return int(_km.group(1)) if _km else -1
for _dll in sorted(_dlls, key=_bnb_ver_key, reverse=True):
for _dll in sorted(_dlls, key = _bnb_ver_key, reverse = True):
_m = _re_bnb.search(
r"libbitsandbytes_rocm(\d+)\.dll", os.path.basename(_dll)
)