mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 09:14:35 +02:00
@@ -12,6 +12,7 @@
|
||||
- allow weights for wildcards, thanks @Tillerz
|
||||
- **UI**
|
||||
- kanvas add send-to functionality
|
||||
- kanvas improve support for standardui
|
||||
- improve extensions tab layout and behavior, thanks @awsr
|
||||
- indicate collapsed/hidden sections
|
||||
- persistent panel minimize/maximize state
|
||||
|
||||
+1
-1
@@ -648,7 +648,7 @@ def check_diffusers():
|
||||
t_start = time.time()
|
||||
if args.skip_all:
|
||||
return
|
||||
sha = '88ffb0013972c7b9fd3725bcd63e3c3c1400834f' # diffusers commit hash
|
||||
sha = '8600b4c10d67b0ce200f664204358747bd53c775' # diffusers commit hash
|
||||
# if args.use_rocm or args.use_zluda or args.use_directml:
|
||||
# sha = '043ab2520f6a19fce78e6e060a68dbc947edb9f9' # lock diffusers versions for now
|
||||
pkg = pkg_resources.working_set.by_key.get('diffusers', None)
|
||||
|
||||
+2
-2
@@ -236,8 +236,8 @@ def refresh():
|
||||
import rocm_sdk
|
||||
environment = PythonPackageEnvironment(rocm_sdk)
|
||||
try:
|
||||
target_family = rocm_sdk._dist_info.determine_target_family()
|
||||
spec = rocm_sdk._dist_info.ALL_PACKAGES['libraries'].get_py_package(target_family)
|
||||
target_family = rocm_sdk._dist_info.determine_target_family() # pylint: disable=protected-access
|
||||
spec = rocm_sdk._dist_info.ALL_PACKAGES['libraries'].get_py_package(target_family) # pylint: disable=protected-access
|
||||
blaslt_tensile_libpath = os.path.join(os.path.dirname(spec.origin), "bin", "hipblaslt", "library")
|
||||
except Exception:
|
||||
blaslt_tensile_libpath = None
|
||||
|
||||
Reference in New Issue
Block a user