mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 17:24:32 +02:00
Update changelog
This commit is contained in:
+2
-1
@@ -1,11 +1,12 @@
|
||||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-03-13
|
||||
## Update for 2025-03-14
|
||||
|
||||
- fix installer not starting when older version of rich is installed
|
||||
- fix circular imports when debug flags are enabled
|
||||
- fix cuda errors with directml
|
||||
- fix memory stats not displaying the ram usage
|
||||
- fix runpod memory limit reporting when limit is set to 0
|
||||
- fix remote vae not being stored in metadata, thanks @iDeNoh
|
||||
- add --upgrade to torch_command when using --use-nightly for ipex and rocm
|
||||
- **ipex**
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ def get_runpod_limit():
|
||||
global runpod_limit # pylint: disable=global-statement
|
||||
if runpod_limit is not None:
|
||||
return runpod_limit
|
||||
runpod_limit = float(os.environ.get('RUNPOD_MEM_GB', 0))
|
||||
runpod_limit = float(os.environ.get('RUNPOD_MEM_GB', sys.float_info.max))
|
||||
if runpod_limit == 0: # RUNPOD_MEM_GB can be set to 0 for no limit
|
||||
runpod_limit = sys.float_info.max
|
||||
return runpod_limit
|
||||
|
||||
Reference in New Issue
Block a user