Skip to content

Commit 3b5d504

Browse files
committed
change default on disable dynamic
1 parent 9522fd4 commit 3b5d504

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3080,7 +3080,7 @@ def define_schema(cls) -> io.Schema:
30803080
inputs=[
30813081
io.Combo.Input("unet_name", folder_paths.get_filename_list("diffusion_models"), tooltip="Select a UNET model to load."),
30823082
io.Combo.Input("weight_dtype", options=["default", "fp8_e4m3fn", "fp8_e4m3fn_fast", "fp8_e5m2"], advanced=True),
3083-
io.Boolean.Input("disable_dynamic_vram", default=True, advanced=True, tooltip="If true, disables dynamic VRAM optimizations when loading the UNET. This can reduce VRAM usage at the cost of potentially higher CPU usage and slower performance. Recommended to keep enabled unless you are experiencing VRAM-related issues with certain models.")
3083+
io.Boolean.Input("disable_dynamic_vram", default=False, advanced=True, tooltip="If true, disables dynamic VRAM optimizations when loading the UNET. This can reduce VRAM usage at the cost of potentially higher CPU usage and slower performance. Recommended to keep enabled unless you are experiencing VRAM-related issues with certain models.")
30843084
],
30853085
outputs=[
30863086
io.Model.Output(display_name="model"),

0 commit comments

Comments
 (0)