From 539fae32345080d97affa5c0ee6503fe1c1964c9 Mon Sep 17 00:00:00 2001 From: Disty0 Date: Sun, 1 Jun 2025 21:01:56 +0300 Subject: [PATCH] Update naming --- README.md | 2 +- modules/shared.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 524d32c0c..831cf2b20 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ All individual features are not listed here, instead check [ChangeLog](CHANGELOG - Platform specific autodetection and tuning performed on install - Optimized processing with latest `torch` developments with built-in support for model compile and quantize Compile backends: *Triton | StableFast | DeepCache | OneDiff | TeaCache | etc.* - Quantization methods: *BitsAndBytes | SDNQ | Optimum-Quanto | TorchAO* + Quantization methods: *SDNQ | BitsAndBytes | Optimum-Quanto | TorchAO* - **Interrogate/Captioning** with 150+ **OpenCLiP** models and 20+ built-in **VLMs** - Built-in queue management - Built in installer with automatic updates and dependency management diff --git a/modules/shared.py b/modules/shared.py index f67a2f0b4..a84708042 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -515,7 +515,7 @@ options_templates.update(options_section(('backends', "Backend Settings"), { })) options_templates.update(options_section(("quantization", "Quantization Settings"), { - "sdnq_quantize_sep": OptionInfo("

SDNQ: SDNext Quantization

", "", gr.HTML), + "sdnq_quantize_sep": OptionInfo("

SDNQ: SD.Next Quantization

", "", gr.HTML), "sdnq_quantize_weights": OptionInfo([], "Quantization enabled", gr.CheckboxGroup, {"choices": ["Model", "Transformer", "VAE", "TE", "Video", "LLM", "ControlNet"], "visible": native}), "sdnq_quantize_mode": OptionInfo("pre", "Quantization mode", gr.Dropdown, {"choices": ["pre", "post"], "visible": native}), "sdnq_quantize_weights_mode": OptionInfo("int8", "Quantization type", gr.Dropdown, {"choices": ["int8", "int6", "uint4", "float8_e4m3fn", "uint8", "uint6", "int4", "float8_e5m2", "uint2", "uint1"], "visible": native}), @@ -523,7 +523,7 @@ options_templates.update(options_section(("quantization", "Quantization Settings "sdnq_quantize_conv_layers": OptionInfo(False, "Quantize the convolutional layers", gr.Checkbox, {"visible": native}), "sdnq_decompress_fp32": OptionInfo(False, "Decompress using full precision", gr.Checkbox, {"visible": native}), "sdnq_decompress_compile": OptionInfo(devices.has_triton(), "Decompress using torch.compile", gr.Checkbox, {"visible": native}), - "sdnq_use_quantized_matmul": OptionInfo(False, "Use quantized MatMul", gr.Checkbox, {"visible": native}), + "sdnq_use_quantized_matmul": OptionInfo(False, "Use Quantized MatMul", gr.Checkbox, {"visible": native}), "sdnq_quantize_with_gpu": OptionInfo(True, "Quantize with the GPU", gr.Checkbox, {"visible": native}), "sdnq_quantize_shuffle_weights": OptionInfo(False, "Shuffle weights in post mode", gr.Checkbox, {"visible": native}),