mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-05 15:39:59 +00:00
9 lines
362 B
Python
9 lines
362 B
Python
|
|
def register(options_templates, options_section, OptionInfo):
|
|
options_templates.update(options_section((None, "Forge Hidden options"), {
|
|
"forge_unet_storage_dtype": OptionInfo('None'),
|
|
"forge_inference_memory": OptionInfo(1024),
|
|
"forge_async_loading": OptionInfo(False),
|
|
"forge_pin_shared_memory": OptionInfo(False),
|
|
}))
|