aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sd_models.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-06-01 18:35:14 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-06-01 18:35:14 +0000
commitb6af0a3809ea869fb180633f9affcae4b199ffcf (patch)
treeac47f34ac97c08e8f83fb2c90f6977459121e6b5 /modules/sd_models.py
parent20ae71faa8ef035c31aa3a410b707d792c8203a3 (diff)
parent8c3e64f4f6d67076031132b1628daba66dfa1121 (diff)
downloadstable-diffusion-webui-gfx803-b6af0a3809ea869fb180633f9affcae4b199ffcf.tar.gz
stable-diffusion-webui-gfx803-b6af0a3809ea869fb180633f9affcae4b199ffcf.tar.bz2
stable-diffusion-webui-gfx803-b6af0a3809ea869fb180633f9affcae4b199ffcf.zip
Merge branch 'release_candidate'
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r--modules/sd_models.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py
index b1afbaa7..7742998a 100644
--- a/modules/sd_models.py
+++ b/modules/sd_models.py
@@ -313,8 +313,6 @@ def load_model_weights(model, checkpoint_info: CheckpointInfo, state_dict, timer
timer.record("apply half()")
- devices.dtype = torch.float32 if shared.cmd_opts.no_half else torch.float16
- devices.dtype_vae = torch.float32 if shared.cmd_opts.no_half or shared.cmd_opts.no_half_vae else torch.float16
devices.dtype_unet = model.model.diffusion_model.dtype
devices.unet_needs_upcast = shared.cmd_opts.upcast_sampling and devices.dtype == torch.float16 and devices.dtype_unet == torch.float16