From e750112612f079dc18b13edb365c79ad1c7eb511 Mon Sep 17 00:00:00 2001 From: Seunghoon Lee Date: Sat, 28 Oct 2023 12:57:28 +0900 Subject: [PATCH] add prefix for directml specific option --- modules/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shared.py b/modules/shared.py index 9fa4c8e28..632224f1d 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -290,7 +290,7 @@ options_templates.update(options_section(('cuda', "Compute Settings"), { "ipex_optimize": OptionInfo(True if devices.backend == "ipex" else False, "Enable IPEX Optimize for Intel GPUs"), "ipex_optimize_upscaler": OptionInfo(True if devices.backend == "ipex" else False, "Enable IPEX Optimize for Intel GPUs with Upscalers"), "directml_memory_provider": OptionInfo(default_memory_provider, 'DirectML memory stats provider', gr.Radio, {"choices": memory_providers}), - "directml_catch_nan": OptionInfo(False, "Retry specific operation when NaN is produced if possible. (makes generation slower)"), + "directml_catch_nan": OptionInfo(False, "DirectML retry specific operation when NaN is produced if possible. (makes generation slower)"), "openvino_disable_model_caching": OptionInfo(False, "OpenVINO disable model caching"), "openvino_hetero_gpu": OptionInfo(False, "OpenVINO use Hetero Device for single inference with multiple devices"), "openvino_remove_cpu_from_hetero": OptionInfo(False, "OpenVINO remove CPU from Hetero Device"),