From de408d5f2c07a2fd27d7c2e245eed1e244f95a43 Mon Sep 17 00:00:00 2001 From: Christopher Anderson Date: Sat, 8 Nov 2025 20:45:32 +1100 Subject: [PATCH] Add env TORCH_AMD_CUDNN_ENABLED (fix typo) --- comfy/model_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/model_management.py b/comfy/model_management.py index 8c2aa5179..2c5f672f9 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -343,7 +343,7 @@ try: "0", "off", "false", "disable", "disabled", "no"} if not torch.backends.cudnn.enabled: logging.info( - "ComfyUI has set torch.backends.cudnn.enabled to False for better AMD performance. Set environment var TORCH_AMD_CUDDNN_ENABLED=1 to enable it again.") + "ComfyUI has set torch.backends.cudnn.enabled to False for better AMD performance. Set environment var TORCH_AMD_CUDNN_ENABLED=1 to enable it again.") try: rocm_version = tuple(map(int, str(torch.version.hip).split(".")[:2]))