aboutsummaryrefslogtreecommitdiff
path: root/modules/sd_hijack.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-12-03 09:58:08 +0300
committerGitHub <noreply@github.com>2022-12-03 09:58:08 +0300
commita2feaa95fc0c4c94131eb75b5b1bc0eaa1696551 (patch)
treea7be0e8b6849aae24f7f6c7879f7ddf43d118425 /modules/sd_hijack.py
parentc7af672186ec09a514f0e78aa21155264e56c130 (diff)
parent0fddb4a1c06a6e2122add7eee3b001a6d473baee (diff)
Merge pull request #5194 from brkirch/autocast-and-mps-randn-fixes
Use devices.autocast() and fix MPS randn issues
Diffstat (limited to 'modules/sd_hijack.py')
-rw-r--r--modules/sd_hijack.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/sd_hijack.py b/modules/sd_hijack.py
index eef6efd2..95a17093 100644
--- a/modules/sd_hijack.py
+++ b/modules/sd_hijack.py
@@ -183,11 +183,7 @@ def register_buffer(self, name, attr):
if type(attr) == torch.Tensor:
if attr.device != devices.device:
-
- if devices.has_mps():
- attr = attr.to(device="mps", dtype=torch.float32)
- else:
- attr = attr.to(devices.device)
+ attr = attr.to(device=devices.device, dtype=(torch.float32 if devices.device.type == 'mps' else None))
setattr(self, name, attr)