aboutsummaryrefslogtreecommitdiff
path: root/modules/devices.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-05-01 14:27:53 +0300
committerAUTOMATIC <16777216c@gmail.com>2023-05-01 14:27:53 +0300
commitfe8a10d428bcc6be9cc8efb9772eca9e40f98dc8 (patch)
treed1e0ff50e327c3c59230b39907284c20ffbf0fe3 /modules/devices.py
parent22bcc7be428c94e9408f589966c2040187245d81 (diff)
parent6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f (diff)
Merge branch 'release_candidate'
Diffstat (limited to 'modules/devices.py')
-rw-r--r--modules/devices.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/devices.py b/modules/devices.py
index 52c3e7cd..c705a3cb 100644
--- a/modules/devices.py
+++ b/modules/devices.py
@@ -92,14 +92,18 @@ def cond_cast_float(input):
def randn(seed, shape):
+ from modules.shared import opts
+
torch.manual_seed(seed)
- if device.type == 'mps':
+ if opts.randn_source == "CPU" or device.type == 'mps':
return torch.randn(shape, device=cpu).to(device)
return torch.randn(shape, device=device)
def randn_without_seed(shape):
- if device.type == 'mps':
+ from modules.shared import opts
+
+ if opts.randn_source == "CPU" or device.type == 'mps':
return torch.randn(shape, device=cpu).to(device)
return torch.randn(shape, device=device)