Update changelog

This commit is contained in:
Disty0
2025-03-14 17:57:14 +03:00
parent 851fb9d307
commit 75c1dcb892
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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
View File
@@ -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