From a255e5bdcf831868a69ef2a856cbfe3497fd9e84 Mon Sep 17 00:00:00 2001 From: Disty0 Date: Wed, 25 Mar 2026 21:46:17 +0300 Subject: [PATCH] SDNQ set sdnq_dequantize_fp32 to True by default --- modules/ui_definitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui_definitions.py b/modules/ui_definitions.py index 6dd92f035..d43b45e3a 100644 --- a/modules/ui_definitions.py +++ b/modules/ui_definitions.py @@ -159,7 +159,7 @@ def create_settings(cmd_opts): "sdnq_use_quantized_matmul": OptionInfo(False, "Use quantized MatMul", gr.Checkbox), "sdnq_use_quantized_matmul_conv": OptionInfo(False, "Use quantized MatMul with conv", gr.Checkbox), "sdnq_quantize_with_gpu": OptionInfo(True, "Quantize using GPU", gr.Checkbox), - "sdnq_dequantize_fp32": OptionInfo(False, "Dequantize using full precision", gr.Checkbox), + "sdnq_dequantize_fp32": OptionInfo(True, "Dequantize using full precision", gr.Checkbox), "sdnq_quantize_shuffle_weights": OptionInfo(False, "Shuffle weights in post mode", gr.Checkbox), "nunchaku_sep": OptionInfo("

Nunchaku Engine

", "", gr.HTML),