aboutsummaryrefslogtreecommitdiff
path: root/modules/memmon.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-12-31 10:52:58 +0300
committerGitHub <noreply@github.com>2022-12-31 10:52:58 +0300
commit03cb43c3c848c04e78b9c6bff9f28fe2f5d316c9 (patch)
tree8fed297d204b8d4d80f7f9976781097e44af43f3 /modules/memmon.py
parent38f5787e6708ddbb56592d02f31c0cb9b7164e11 (diff)
parent5958bbd244703f7c248a91e86dea5d52acc85505 (diff)
Merge pull request #6133 from vladmandic/memmon-stats
add additional memory states
Diffstat (limited to 'modules/memmon.py')
-rw-r--r--modules/memmon.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/memmon.py b/modules/memmon.py
index 9fb9b687..a7060f58 100644
--- a/modules/memmon.py
+++ b/modules/memmon.py
@@ -71,10 +71,13 @@ class MemUsageMonitor(threading.Thread):
def read(self):
if not self.disabled:
free, total = torch.cuda.mem_get_info()
+ self.data["free"] = free
self.data["total"] = total
torch_stats = torch.cuda.memory_stats(self.device)
+ self.data["active"] = torch_stats["active.all.current"]
self.data["active_peak"] = torch_stats["active_bytes.all.peak"]
+ self.data["reserved"] = torch_stats["reserved_bytes.all.current"]
self.data["reserved_peak"] = torch_stats["reserved_bytes.all.peak"]
self.data["system_peak"] = total - self.data["min_free"]