From 4f3544d131652678c8070b306f01cce392465cb5 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Mon, 10 Aug 2026 20:25:01 -0700 Subject: [PATCH] Make cu130 warning more visible. (#15463) --- comfy/quant_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/quant_ops.py b/comfy/quant_ops.py index 6d9112dbb..18fd2d613 100644 --- a/comfy/quant_ops.py +++ b/comfy/quant_ops.py @@ -40,7 +40,7 @@ try: cuda_version = tuple(map(int, str(torch.version.cuda).split('.'))) if cuda_version < (13,): ck.registry.disable("cuda") - logging.warning("WARNING: You need pytorch with cu130 or higher to use optimized CUDA operations.") + logging.warning("WARNING: You need pytorch with cu130 or higher to use optimized CUDA operations.\nWARNING WARNING WARNING\nIf you are on nvidia 20 series and above it is required that you update your pytorch to cu130 or higher.\n") # On ROCm/AMD the CUDA backend is unavailable, so Triton is the only accelerated # comfy-kitchen backend. Enable it by default there, but only on Triton >= 3.7 AND a