aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-06-27 06:19:04 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-06-27 06:19:04 +0000
commit24129368f1b732be25ef486edb2cf5a6ace66737 (patch)
treee50fa0b140810eeb2698df5bdd49f2acdcc7d6d7
parent14196548c55dfe4775c96bdb939ce1a150933393 (diff)
downloadstable-diffusion-webui-gfx803-24129368f1b732be25ef486edb2cf5a6ace66737.tar.gz
stable-diffusion-webui-gfx803-24129368f1b732be25ef486edb2cf5a6ace66737.tar.bz2
stable-diffusion-webui-gfx803-24129368f1b732be25ef486edb2cf5a6ace66737.zip
send tensors to the correct device when loading from safetensors file with memmap disabled for #11260
-rw-r--r--modules/sd_models.py4
-rw-r--r--modules/shared.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py
index 0391398a..f65f4e36 100644
--- a/modules/sd_models.py
+++ b/modules/sd_models.py
@@ -246,11 +246,13 @@ def read_metadata_from_safetensors(filename):
def read_state_dict(checkpoint_file, print_global_state=False, map_location=None):
_, extension = os.path.splitext(checkpoint_file)
if extension.lower() == ".safetensors":
+ device = map_location or shared.weight_load_location or devices.get_optimal_device_name()
+
if not shared.opts.disable_mmap_load_safetensors:
- device = map_location or shared.weight_load_location or devices.get_optimal_device_name()
pl_sd = safetensors.torch.load_file(checkpoint_file, device=device)
else:
pl_sd = safetensors.torch.load(open(checkpoint_file, 'rb').read())
+ pl_sd = {k: v.to(device) for k, v in pl_sd.items()}
else:
pl_sd = torch.load(checkpoint_file, map_location=map_location or shared.weight_load_location)
diff --git a/modules/shared.py b/modules/shared.py
index 4743a428..203ee1b9 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -376,7 +376,7 @@ options_templates.update(options_section(('system', "System"), {
"multiple_tqdm": OptionInfo(True, "Add a second progress bar to the console that shows progress for an entire job."),
"print_hypernet_extra": OptionInfo(False, "Print extra hypernetwork information to console."),
"list_hidden_files": OptionInfo(True, "Load models/files in hidden directories").info("directory is hidden if its name starts with \".\""),
- "disable_mmap_load_safetensors": OptionInfo(False, "Disable memmapping for loading .safetensors files (fixes very slow loading speed in some cases)."),
+ "disable_mmap_load_safetensors": OptionInfo(False, "Disable memmapping for loading .safetensors files.").info("fixes very slow loading speed in some cases"),
}))
options_templates.update(options_section(('training', "Training"), {