diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 09:45:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 09:45:43 +0000 |
commit | e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565 (patch) | |
tree | 6c31ea8ced8590afd4ba019be838bea41885b6cd /modules/devices.py | |
parent | c9647c8d23efa8c939c6af39878784e246082122 (diff) | |
parent | 2c935d8eb0be10edb226e145a72eb373451cb984 (diff) | |
download | stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.tar.gz stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.tar.bz2 stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.zip |
Merge branch 'dev' into gradio-theme-support
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) |