aboutsummaryrefslogtreecommitdiff
path: root/modules/sd_samplers_common.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/sd_samplers_common.py
parent22bcc7be428c94e9408f589966c2040187245d81 (diff)
parent6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f (diff)
Merge branch 'release_candidate'
Diffstat (limited to 'modules/sd_samplers_common.py')
-rw-r--r--modules/sd_samplers_common.py10
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