aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sd_models.py
diff options
context:
space:
mode:
authorliamkerr <liamkerr@users.noreply.github.com>2022-10-02 14:02:38 +0000
committerGitHub <noreply@github.com>2022-10-02 14:02:38 +0000
commit7308aeefd9d25212398068c1a35f0b879b9ba06f (patch)
tree60f81d876522c772f85911ec4065ab3f448a8479 /modules/sd_models.py
parent3c6a049fc3c6b54ada3736710a7e86663ea7f3d9 (diff)
parent4e72a1aab6d1b3a8d8c09fadc81843a07c05cc18 (diff)
downloadstable-diffusion-webui-gfx803-7308aeefd9d25212398068c1a35f0b879b9ba06f.tar.gz
stable-diffusion-webui-gfx803-7308aeefd9d25212398068c1a35f0b879b9ba06f.tar.bz2
stable-diffusion-webui-gfx803-7308aeefd9d25212398068c1a35f0b879b9ba06f.zip
Merge branch 'master' into token_updates
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r--modules/sd_models.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py
index 2539f14c..5b3dbdc7 100644
--- a/modules/sd_models.py
+++ b/modules/sd_models.py
@@ -8,7 +8,7 @@ from omegaconf import OmegaConf
from ldm.util import instantiate_from_config
-from modules import shared, modelloader
+from modules import shared, modelloader, devices
from modules.paths import models_path
model_dir = "Stable-diffusion"
@@ -134,6 +134,8 @@ def load_model_weights(model, checkpoint_file, sd_model_hash):
if not shared.cmd_opts.no_half:
model.half()
+ devices.dtype = torch.float32 if shared.cmd_opts.no_half else torch.float16
+
model.sd_model_hash = sd_model_hash
model.sd_model_checkpint = checkpoint_file