From f3a36e74844893f32f77f22d249d08862805d8f4 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Fri, 10 Jul 2026 18:37:59 -0700 Subject: [PATCH] Temporarily disable auto enabling triton by default on AMD. (#14878) I get freezing issues on my test machine. --- 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 b1aabdc93..15f9b1fdb 100644 --- a/comfy/quant_ops.py +++ b/comfy/quant_ops.py @@ -48,7 +48,7 @@ try: # older Triton lacks libdevice.rint on the HIP backend and hard-crashes the INT8 path. if args.disable_triton_backend: ck.registry.disable("triton") - elif args.enable_triton_backend or (torch.version.hip is not None and _rocm_kitchen_arch_supported()): + elif args.enable_triton_backend: # or (torch.version.hip is not None and _rocm_kitchen_arch_supported()): try: import triton triton_version = tuple(int(v) for v in triton.__version__.split(".")[:2])