From 51a598bfc3fccccf7199351a627848baa16b823a Mon Sep 17 00:00:00 2001 From: Dity0 Date: Sun, 16 Aug 2026 12:42:13 +0300 Subject: [PATCH] Enable smooth_k 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 5148c75a3..0eec765bf 100644 --- a/modules/ui_definitions.py +++ b/modules/ui_definitions.py @@ -252,7 +252,7 @@ def create_settings(cmd_opts): "dynamic_attention_trigger_rate": OptionInfo(1, "Dynamic Attention trigger rate", gr.Slider, {"minimum": 0.01, "maximum": max(gpu_memory,4)*2, "step": 0.01}), "sdnq_attention_sep": OptionInfo("

SDNQ Attention

", "", gr.HTML), - "sdnq_attention_smooth_k": OptionInfo(False, "SDNQ Attention use Smooth K", gr.Checkbox), + "sdnq_attention_smooth_k": OptionInfo(True, "SDNQ Attention use Smooth K", gr.Checkbox), "sdnq_attention_use_hadamard": OptionInfo(False, "SDNQ Attention use Hadamard", gr.Checkbox), "sdnq_attention_matmul_type": OptionInfo("enabled", "SDNQ Attention MatMul type", gr.Radio, {"choices": sdnq_matmul_modes}), "sdnq_attention_pv_matmul_type": OptionInfo("disabled", "SDNQ Attention PV MatMul type", gr.Radio, {"choices": sdnq_matmul_modes}),