diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-27 06:11:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 06:11:08 +0000 |
commit | 14196548c55dfe4775c96bdb939ce1a150933393 (patch) | |
tree | 480bb6bbe68d30ee0fef88bdbeae5336b9cde976 /modules/shared.py | |
parent | d35e24611172a49f7b3637c601dc0fb12c9d0326 (diff) | |
parent | 41363e0d27bbaa0c84eebe3c7c8451075390ec4e (diff) | |
download | stable-diffusion-webui-gfx803-14196548c55dfe4775c96bdb939ce1a150933393.tar.gz stable-diffusion-webui-gfx803-14196548c55dfe4775c96bdb939ce1a150933393.tar.bz2 stable-diffusion-webui-gfx803-14196548c55dfe4775c96bdb939ce1a150933393.zip |
Merge pull request #11260 from dhwz/dev
fix very slow loading speed of .safetensors files
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index da4918b5..4743a428 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -376,6 +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)."),
}))
options_templates.update(options_section(('training', "Training"), {
|