mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-01-26 19:09:45 +00:00
8 lines
308 B
Python
8 lines
308 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),
|
|
}))
|