diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 22:13:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 22:13:40 +0300 |
commit | 15c4e78b44e14d70b82dcb5b563251fed7be0766 (patch) | |
tree | 6f1acaae50a49544a08384b52739df3e2d803a10 /modules/sd_samplers_common.py | |
parent | 3e5b3c79e49ec3a10174c250815dabce6efdddca (diff) | |
parent | 2e78e65a22bfa6b116ae18d12fdcb85ec8acd727 (diff) |
Merge branch 'dev' into feature/restore-progress
Diffstat (limited to 'modules/sd_samplers_common.py')
-rw-r--r-- | modules/sd_samplers_common.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/sd_samplers_common.py b/modules/sd_samplers_common.py index a1aac7cf..bc074238 100644 --- a/modules/sd_samplers_common.py +++ b/modules/sd_samplers_common.py @@ -60,3 +60,13 @@ def store_latent(decoded): class InterruptedException(BaseException):
pass
+
+
+if opts.randn_source == "CPU":
+ import torchsde._brownian.brownian_interval
+
+ def torchsde_randn(size, dtype, device, seed):
+ generator = torch.Generator(devices.cpu).manual_seed(int(seed))
+ return torch.randn(size, dtype=dtype, device=devices.cpu, generator=generator).to(device)
+
+ torchsde._brownian.brownian_interval._randn = torchsde_randn
|