Problem
#14862 auto-enables the comfy-kitchen Triton backend on all ROCm GPUs (Triton >= 3.7). The INT8 matmul kernels need matrix cores — WMMA on RDNA3+/RDNA4 (gfx11xx/gfx12xx), MFMA on CDNA (gfx9xx). RDNA1/RDNA2 (gfx10xx) have neither, so the INT8 path hangs the GPU instead of falling back to eager.
Report
RDNA2 + triton-windows 3.7.1: both native "load diffusion model" and the custom-node INT8 path freeze until a reset (Comfy-Org/comfy-kitchen#69).
Fix
Gate the ROCm auto-enable on GPU arch (only WMMA/MFMA archs) so RDNA1/RDNA2 stay on eager; add --disable-triton-backend. Workaround today: run the v0.27.0 release (predates #14862).
Problem
#14862 auto-enables the comfy-kitchen Triton backend on all ROCm GPUs (Triton >= 3.7). The INT8 matmul kernels need matrix cores — WMMA on RDNA3+/RDNA4 (
gfx11xx/gfx12xx), MFMA on CDNA (gfx9xx). RDNA1/RDNA2 (gfx10xx) have neither, so the INT8 path hangs the GPU instead of falling back to eager.Report
RDNA2 +
triton-windows 3.7.1: both native "load diffusion model" and the custom-node INT8 path freeze until a reset (Comfy-Org/comfy-kitchen#69).Fix
Gate the ROCm auto-enable on GPU arch (only WMMA/MFMA archs) so RDNA1/RDNA2 stay on eager; add
--disable-triton-backend. Workaround today: run the v0.27.0 release (predates #14862).