diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-08 06:01:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 06:01:25 +0000 |
commit | 73d956454f0111ffdbebc0285033ca3dd630346b (patch) | |
tree | 4396fd0dfed3e0a7a5aac04a159619cec1b2f535 /modules/devices.py | |
parent | 57a3d146e3e193904c1c5e148f7244b9d045f157 (diff) | |
parent | b15bbef798f5aba047f0e6955ce94fe589071b44 (diff) | |
download | stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.gz stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.bz2 stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.zip |
Merge branch 'dev' into tooltip
Diffstat (limited to 'modules/devices.py')
-rw-r--r-- | modules/devices.py | 8 |
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) |